HomeSort by relevance Sort by last modified time
    Searched refs:newfd (Results 1 - 13 of 13) sorted by null

  /system/core/sh/
redir.c 379 int newfd; local
381 newfd = fcntl(from, F_DUPFD, to);
382 if (newfd < 0) {
388 return newfd;
  /external/valgrind/main/include/
pub_tool_libcfile.h 82 extern SysRes VG_(dup2) ( Int oldfd, Int newfd );
  /external/valgrind/main/coregrind/
m_libcfile.c 62 Int newfd; local
66 newfd = VG_(fcntl)(oldfd, VKI_F_DUPFD, VG_(fd_hard_limit));
67 if (newfd != -1)
71 VG_(fcntl)(newfd, VKI_F_SETFD, VKI_FD_CLOEXEC);
73 vg_assert(newfd >= VG_(fd_hard_limit));
74 return newfd;
352 SysRes VG_(dup2) ( Int oldfd, Int newfd )
355 return VG_(do_syscall2)(__NR_dup2, oldfd, newfd);
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/macosx/
AudioFileReaderThread.c 90 FileData *newfd = (FileData *) SDL_malloc(sizeof (FileData)); local
91 newfd->obj = inItem;
92 newfd->next = NULL;
96 frt->mFileData = newfd;
98 prev->next = newfd;
  /packages/inputmethods/PinyinIME/jni/android/
com_android_inputmethod_pinyin_PinyinDecoderService.cpp 75 int newfd = dup(fd); local
76 if (im_open_decoder_fd(newfd, startoffset, length, (const char*)fud))
79 close(newfd);
  /bionic/libc/bionic/
fts.c 1017 int ret, oerrno, newfd; local
1020 newfd = fd;
1023 if (fd < 0 && (newfd = open(path, O_RDONLY, 0)) < 0)
1025 if (fstat(newfd, &sb)) {
1034 ret = fchdir(newfd);
1038 (void)close(newfd);
  /system/core/toolbox/
dd.c 312 int newfd; local
323 newfd = fcntl(fd, F_DUPFD, 3);
324 if (newfd < 0) {
332 return newfd;
  /ndk/sources/host-tools/sed-4.2.1/lib/
unistd.in.h 156 /* Copy the file descriptor OLDFD into file descriptor NEWFD. Do nothing if
157 NEWFD = OLDFD, otherwise close NEWFD first if it is open.
161 extern int dup2 (int oldfd, int newfd);
  /external/qemu/
net-android.c 1787 int newfd; local
    [all...]
net.c 1669 int newfd; local
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-generic.c     [all...]
syswrap-linux.c     [all...]
  /external/valgrind/main/memcheck/tests/x86-linux/
scalar.stderr.exp 553 Syscall param dup2(newfd) contains uninitialised byte(s)
    [all...]

Completed in 542 milliseconds