HomeSort by relevance Sort by last modified time
    Searched defs:dup (Results 101 - 125 of 318) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/tremolo/Tremolo/
vorbisfile.c 1120 ogg_page dup; local
    [all...]
  /external/valgrind/coregrind/
m_libcfile.c 470 SysRes VG_(dup) ( Int oldfd ) function
    [all...]
  /frameworks/av/media/libaudioclient/include/media/
AudioRecord.h 720 MediaAnalyticsItem *dup() { return mAnalyticsItem->dup(); } function in class:android::AudioRecord::MediaMetrics
    [all...]
AudioTrack.h 1208 MediaAnalyticsItem *dup() { return mAnalyticsItem->dup(); } function in class:android::AudioTrack::MediaMetrics
    [all...]
  /frameworks/av/media/libmediametrics/
MediaAnalyticsItem.cpp 116 MediaAnalyticsItem *MediaAnalyticsItem::dup() { function in class:android::MediaAnalyticsItem
  /frameworks/native/libs/input/
InputTransport.cpp 227 sp<InputChannel> InputChannel::dup() const { function in class:android::InputChannel
228 int fd = ::dup(getFd());
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
cursesf.h 157 inline NCursesFormField* dup(int first_row, int first_col) function in class:NCursesFormField
  /external/annotation-tools/asmx/src/org/objectweb/asm/commons/
GeneratorAdapter.java 496 dup(); method
638 * Generates a DUP instruction.
640 public void dup() { method in class:GeneratorAdapter
641 mv.visitInsn(Opcodes.DUP);
1384 dup(); method
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
tree.py 2696 def dup(self, el): member in class:RewriteRuleElementStream
2760 def dup(self, el): member in class:RewriteRuleTokenStream
2800 def dup(self, el): member in class:RewriteRuleSubtreeStream
2819 def dup(self, el): member in class:RewriteRuleNodeStream
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
tree.rb 288 stack.push( cursor.children.dup ) unless cursor.empty?
707 tree_node and tree_node.dup
859 from_token = from_token.dup
1189 return @nodes.dup
1338 def dup( el ) method in class:ANTLR3.CommonTree.TreeAdaptor.CommonTreeNodeStream.each.RewriteRuleTokenStream
1358 def dup( el ) method in class:ANTLR3.CommonTree.TreeAdaptor.CommonTreeNodeStream.each.RewriteRuleSubtreeStream
1377 def dup( el ) method in class:ANTLR3.CommonTree.TreeAdaptor.CommonTreeNodeStream.each.RewriteRuleNodeStream
    [all...]
  /external/proguard/src/proguard/evaluation/
Processor.java 208 stack.dup();
    [all...]
  /frameworks/base/core/java/android/os/
ParcelFileDescriptor.java 318 * Create a new ParcelFileDescriptor that is a dup of an existing
323 public static ParcelFileDescriptor dup(FileDescriptor orig) throws IOException { method in class:ParcelFileDescriptor
325 final FileDescriptor fd = Os.dup(orig);
333 * Create a new ParcelFileDescriptor that is a dup of the existing
338 public ParcelFileDescriptor dup() throws IOException { method in class:ParcelFileDescriptor
340 return mWrapped.dup();
342 return dup(getFileDescriptor());
348 * ParcelFileDescriptor holds a dup of the original fd passed in here,
351 * @param fd The native fd that the ParcelFileDescriptor should dup.
354 * for a dup of the given fd
361 final FileDescriptor dup = Os.dup(original); local
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Linux.java 66 public native FileDescriptor dup(FileDescriptor oldFd) throws ErrnoException; method in class:Linux
Os.java 60 public FileDescriptor dup(FileDescriptor oldFd) throws ErrnoException; method in interface:Os
ForwardingOs.java 75 public FileDescriptor dup(FileDescriptor oldFd) throws ErrnoException { return os.dup(oldFd); } method in class:ForwardingOs
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixNativeDispatcher.java 61 * int dup(int filedes)
63 static native int dup(int filedes) throws UnixException; method in class:UnixNativeDispatcher
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperPreview.java 386 MotionEvent dup = MotionEvent.obtainNoHistory(ev); local
388 mWallpaperConnection.mEngine.dispatchPointer(dup);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
setobject.c 2393 PyObject *elem=NULL, *dup=NULL, *t, *f, *dup2, *x; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
setobject.c 2397 PyObject *elem=NULL, *dup=NULL, *t, *f, *dup2, *x; local
    [all...]
  /external/mesa3d/src/compiler/spirv/
spirv_to_nir.c 199 char *dup = ralloc_strndup(b, (char *)words, word_count * sizeof(*words)); local
202 unsigned len = strlen(dup) + 1;
205 return dup;
    [all...]
  /external/python/cpython2/Objects/
setobject.c 2399 PyObject *elem=NULL, *dup=NULL, *t, *f, *dup2, *x; local
    [all...]
  /external/python/cpython3/Objects/
setobject.c 2403 PyObject *elem=NULL, *dup=NULL, *t, *f, *dup2, *x=NULL; local
    [all...]
  /external/selinux/libselinux/src/android/
android_platform.c 295 bool dup; local
388 dup = (!s1->user.str || !strcmp(s1->user.str, s2->user.str)) &&
398 if (dup) {
    [all...]
  /libcore/luni/src/main/java/android/system/
Os.java 105 * See <a href="http://man7.org/linux/man-pages/man2/dup.2.html">dup(2)</a>.
107 public static FileDescriptor dup(FileDescriptor oldFd) throws ErrnoException { return Libcore.os.dup(oldFd); } method in class:Os
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactoryTest.java     [all...]

Completed in 1270 milliseconds

1 2 3 45 6 7 8 91011>>