HomeSort by relevance Sort by last modified time
    Searched refs:fd (Results 1 - 25 of 4894) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
isatty.c 8 int isatty(int fd) {
9 return ki_isatty(fd);
fchdir.c 12 int fchdir(int fd) {
13 return ki_fchdir(fd);
fdatasync.c 12 int fdatasync(int fd) {
13 return ki_fdatasync(fd);
fsync.c 12 int fsync(int fd) {
13 return ki_fsync(fd);
ftruncate.c 8 int ftruncate(int fd, off_t length) {
9 return ki_ftruncate(fd, length);
listen.c 10 int listen(int fd, int backlog) {
11 return ki_listen(fd, backlog);
shutdown.c 10 int shutdown(int fd, int how) {
11 return ki_shutdown(fd, how);
tcflush.c 8 int tcflush(int fd, int queue_selector) {
9 return ki_tcflush(fd, queue_selector);
tcgetattr.c 8 int tcgetattr(int fd, struct termios* termios_p) {
9 return ki_tcgetattr(fd, termios_p);
fchmod.c 12 int fchmod(int fd, mode_t mode) {
13 return ki_fchmod(fd, mode);
fchown.c 8 int fchown(int fd, uid_t owner, gid_t group) {
9 return ki_fchown(fd, owner, group);
recvmsg.c 8 ssize_t recvmsg(int fd, struct msghdr* msg, int flags) {
9 return ki_recvmsg(fd, msg, flags);
tcsetattr.c 8 int tcsetattr(int fd, int optional_actions, const struct termios* termios_p) {
9 return ki_tcsetattr(fd, optional_actions, termios_p);
  /libnativehelper/include/nativehelper/
ScopedFd.h 22 // A smart pointer that closes the given fd on going out of scope.
23 // Use this when the fd is incidental to the purpose of your function,
27 explicit ScopedFd(int fd) : fd(fd) {
31 close(fd);
35 return fd;
39 int fd; member in class:ScopedFd
  /external/bison/lib/
fd-safer-flag.c 29 /* Return FD, unless FD would be a copy of standard input, output, or
30 error; in that case, return a duplicate of FD, closing FD. If FLAG
31 contains O_CLOEXEC, the returned FD will have close-on-exec
32 semantics. On failure to duplicate, close FD, set errno, and
33 return -1. Preserve errno if FD is negative, so that the caller
40 fd_safer_flag (int fd, int flag)
42 if (STDIN_FILENO <= fd && fd <= STDERR_FILENO
    [all...]
fd-safer.c 27 /* Return FD, unless FD would be a copy of standard input, output, or
28 error; in that case, return a duplicate of FD, closing FD. On
29 failure to duplicate, close FD, set errno, and return -1. Preserve
30 errno if FD is negative, so that the caller can always inspect
37 fd_safer (int fd)
39 if (STDIN_FILENO <= fd && fd <= STDERR_FILENO)
41 int f = dup_safer (fd);
    [all...]
  /external/chromium/base/
file_descriptor_posix.h 21 : fd(-1),
25 : fd(ifd),
29 return (fd == other.fd && auto_close == other.auto_close);
34 return other.fd < fd;
37 int fd; member in struct:base::FileDescriptor
  /external/chromium_org/base/
file_descriptor_posix.h 20 : fd(-1),
24 : fd(ifd),
28 return (fd == other.fd && auto_close == other.auto_close);
33 return other.fd < fd;
36 int fd; member in struct:base::FileDescriptor
  /external/chromium_org/third_party/mesa/src/src/gbm/main/
backend.h 34 _gbm_create_device(int fd);
  /external/mesa3d/src/gbm/main/
backend.h 34 _gbm_create_device(int fd);
  /external/qemu/android/protocol/
attach-ui-proxy.h 24 * fd - Socket descriptor for the proxy.
28 extern int attachUiProxy_create(int fd);
core-commands-impl.h 25 * fd - Socket descriptor for the service.
29 extern int coreCmdImpl_create(int fd);
user-events-impl.h 24 * fd - Socket descriptor for the service.
28 extern int userEventsImpl_create(int fd);
  /frameworks/av/include/media/
MemoryLeakTrackUtil.h 21 * Dump the memory address of the calling process to the given fd.
23 extern void dumpMemoryAddresses(int fd);
  /system/core/adb/
console.c 8 int fd, port; local
18 fd = socket_loopback_client( port, SOCK_STREAM );
19 if (fd < 0) {
23 return fd;
29 int fd, nn; local
31 fd = connect_to_console();
32 if (fd < 0)
38 adb_write( fd, argv[nn], strlen(argv[nn]) );
39 adb_write( fd, (nn == argc-1) ? "\n" : " ", 1 );
41 adb_write( fd, QUIT, sizeof(QUIT)-1 )
    [all...]

Completed in 433 milliseconds

1 2 3 4 5 6 7 8 91011>>