HomeSort by relevance Sort by last modified time
    Searched refs:dup (Results 51 - 75 of 402) sorted by null

1 23 4 5 6 7 8 91011>>

  /system/extras/tests/cpueater/
daemonize.c 91 close(2); dup(1); /* join stdout and stderr */
  /external/sonivox/arm-wt-22k/misc/
eas_host.c 18 * buffer, the position of the next byte of data to be read, the dup
91 EAS_BOOL dup; member in struct:eas_hw_file_tag
264 file->dup = EAS_FALSE;
637 dupfile->dup = file->dup = EAS_TRUE;
671 if (file1->dup)
694 /* there is only one duplicate, clear the dup flag */
696 dupFile->dup = EAS_FALSE;
  /external/proguard/src/proguard/evaluation/
TracedStack.java 202 public void dup() method in class:TracedStack
204 super.dup();
  /external/protobuf/src/google/protobuf/testing/
googletest.cc 162 original_stdout_ = dup(1);
177 original_stderr_ = dup(2);
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/
webserver.rb 31 ie = $INSTANCE.dup
39 raw_user_agent = user_agent.dup
  /frameworks/av/media/libstagefright/rtsp/
AH263Assembler.cpp 196 sp<AMessage> msg = mNotifyMsg->dup();
209 sp<AMessage> msg = mNotifyMsg->dup();
  /frameworks/av/media/libstagefright/wifi-display/source/
Converter.cpp 182 mOutputFormat = mInputFormat->dup();
230 sp<AMessage> tmp = mOutputFormat->dup();
281 sp<AMessage> notify = mNotify->dup();
462 mEncoder->requestActivityNotification(mEncoderActivityNotify->dup());
515 sp<AMessage> notify = mNotify->dup();
563 sp<AMessage> notify = mNotify->dup();
666 sp<AMessage> notify = mNotify->dup();
683 sp<AMessage> notify = mNotify->dup();
MediaPuller.cpp 158 sp<AMessage> notify = mNotify->dup();
182 sp<AMessage> notify = mNotify->dup();
  /frameworks/native/libs/ui/
Fence.cpp 98 int Fence::dup() const { function in class:android::Fence
99 return ::dup(mFenceFd);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteRuleElementStream.js 20 /** Once a node / subtree has been used in a stream, it must be dup'd
23 * If dirty, then next() always returns a dup.
75 * size==1. If we've already used the element, dup (dirty bit set).
81 // if out of elements and size is 1, dup
83 return this.dup(el);
102 if ( n===1 ) { // if size is 1, it's ok; return and we'll dup
105 // out of elements and size was not 1, so we can't dup
  /external/bison/lib/
dup2.c 123 int duplicated_fd = dup (fd);
  /external/chromium/base/
file_descriptor_shuffle.cc 83 *result = HANDLE_EINTR(dup(fd));
  /external/chromium-trace/trace-viewer/build/
generate_standalone_timeline_view.py 49 return os.fdopen(os.dup(sys.stdout.fileno()), 'w')
  /external/compiler-rt/BlocksRuntime/tests/
fail.c 60 dup(1);
  /frameworks/base/core/java/android/view/
InputChannel.java 132 public InputChannel dup() { method in class:InputChannel
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include-fixed/X11/
Xw32defs.h 30 #define dup _dup macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xw32defs.h 21 #define dup _dup macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/X11/
Xw32defs.h 30 #define dup _dup macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xw32defs.h 21 #define dup _dup macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/X11/
Xw32defs.h 30 #define dup _dup macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xw32defs.h 21 #define dup _dup macro
  /external/clang/test/Analysis/
taint-generic.c 103 char *dup; local
104 dup = strndup(s, 20);
105 setproctitle(dup, 3); // expected-warning {{Uncontrolled Format String}}
  /external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
EASLib.c 67 * to malloc and free, the dup flag, and simply track
78 EAS_BOOL dup; member in struct:eas_hw_file_tag
86 EAS_BOOL dup; member in struct:eas_hw_file_tag
843 file->dup = EAS_FALSE;
    [all...]
EASLibVst.c 65 * to malloc and free, the dup flag, and simply track
76 EAS_BOOL dup; member in struct:eas_hw_file_tag
84 EAS_BOOL dup; member in struct:eas_hw_file_tag
538 file->dup = EAS_FALSE;
920 dupfile->dup = file->dup = EAS_TRUE;
954 if (file1->dup)
977 /* there is only one duplicate, clear the dup flag */
979 dupFile->dup = EAS_FALSE;
1062 file->dup = EAS_FALSE
    [all...]
  /frameworks/base/core/java/android/os/
ParcelFileDescriptor.java 122 * Create a new ParcelFileDescriptor that is a dup of an existing
127 public static ParcelFileDescriptor dup(FileDescriptor orig) throws IOException { method in class:ParcelFileDescriptor
133 * Create a new ParcelFileDescriptor that is a dup of the existing
138 public ParcelFileDescriptor dup() throws IOException { method in class:ParcelFileDescriptor
139 return dup(getFileDescriptor());
144 * ParcelFileDescriptor holds a dup of the original fd passed in here,
147 * @param fd The native fd that the ParcelFileDescriptor should dup.
150 * for a dup of the given fd.
180 * ParcelFileDescriptor holds a dup of the original FileDescriptor in

Completed in 2065 milliseconds

1 23 4 5 6 7 8 91011>>