OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef BASE_LINUX_UTIL_H_ | 5 #ifndef BASE_LINUX_UTIL_H_ |
6 #define BASE_LINUX_UTIL_H_ | 6 #define BASE_LINUX_UTIL_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 #include <sys/types.h> | 9 #include <sys/types.h> |
10 | 10 |
11 #include <string> | 11 #include <string> |
12 | 12 |
13 class FilePath; | 13 class FilePath; |
14 | 14 |
15 namespace base { | 15 namespace base { |
16 | 16 |
17 class EnvVarGetter; | 17 class EnvVarGetter; |
18 | 18 |
19 static const char kFindInodeSwitch[] = "--find-inode"; | 19 static const char kFindInodeSwitch[] = "--find-inode"; |
20 | 20 |
21 // Makes a copy of |pixels| with the ordering changed from BGRA to RGBA. | |
22 // The caller is responsible for free()ing the data. If |stride| is 0, | |
23 // it's assumed to be 4 * |width|. | |
24 uint8_t* BGRAToRGBA(const uint8_t* pixels, int width, int height, int stride); | |
25 | |
26 // Get the Linux Distro if we can, or return "Unknown", similar to | 21 // Get the Linux Distro if we can, or return "Unknown", similar to |
27 // GetWinVersion() in base/win_util.h. | 22 // GetWinVersion() in base/win_util.h. |
28 std::string GetLinuxDistro(); | 23 std::string GetLinuxDistro(); |
29 | 24 |
30 // Return the inode number for the UNIX domain socket |fd|. | 25 // Return the inode number for the UNIX domain socket |fd|. |
31 bool FileDescriptorGetInode(ino_t* inode_out, int fd); | 26 bool FileDescriptorGetInode(ino_t* inode_out, int fd); |
32 | 27 |
33 // Find the process which holds the given socket, named by inode number. If | 28 // Find the process which holds the given socket, named by inode number. If |
34 // multiple processes hold the socket, this function returns false. | 29 // multiple processes hold the socket, this function returns false. |
35 bool FindProcessHoldingSocket(pid_t* pid_out, ino_t socket_inode); | 30 bool FindProcessHoldingSocket(pid_t* pid_out, ino_t socket_inode); |
36 | 31 |
37 } // namespace base | 32 } // namespace base |
38 | 33 |
39 #endif // BASE_LINUX_UTIL_H_ | 34 #endif // BASE_LINUX_UTIL_H_ |
OLD | NEW |