HomeSort by relevance Sort by last modified time
    Searched refs:open (Results 151 - 175 of 2894) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/
fcntl.h 2 * Copyright (C) 2008 The Android Open Source Project
46 extern int open(const char* path, int mode, ...);
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/
fcntl.h 2 * Copyright (C) 2008 The Android Open Source Project
46 extern int open(const char* path, int mode, ...);
  /prebuilts/ndk/8/platforms/android-14/arch-arm/usr/include/
fcntl.h 2 * Copyright (C) 2008 The Android Open Source Project
46 extern int open(const char* path, int mode, ...);
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/
fcntl.h 2 * Copyright (C) 2008 The Android Open Source Project
46 extern int open(const char* path, int mode, ...);
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/
fcntl.h 2 * Copyright (C) 2008 The Android Open Source Project
46 extern int open(const char* path, int mode, ...);
  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/
fcntl.h 2 * Copyright (C) 2008 The Android Open Source Project
46 extern int open(const char* path, int mode, ...);
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/
fcntl.h 2 * Copyright (C) 2008 The Android Open Source Project
46 extern int open(const char* path, int mode, ...);
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/
fcntl.h 2 * Copyright (C) 2008 The Android Open Source Project
46 extern int open(const char* path, int mode, ...);
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/
fcntl.h 2 * Copyright (C) 2008 The Android Open Source Project
46 extern int open(const char* path, int mode, ...);
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/
fcntl.h 2 * Copyright (C) 2008 The Android Open Source Project
46 extern int open(const char* path, int mode, ...);
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/
fcntl.h 2 * Copyright (C) 2008 The Android Open Source Project
46 extern int open(const char* path, int mode, ...);
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/
fcntl.h 2 * Copyright (C) 2008 The Android Open Source Project
46 extern int open(const char* path, int mode, ...);
  /sdk/emulator/opengl/host/libs/libOpenglRender/
GL2Dispatch.cpp 2 * Copyright (C) 2011 The Android Open Source Project
41 s_gles2_lib = osUtils::dynLibrary::open(libName);
  /sdk/emulator/opengl/shared/OpenglOsUtils/
osDynLibrary.h 2 * Copyright (C) 2011 The Android Open Source Project
30 static dynLibrary *open(const char *p_libName);
  /build/tools/
diff_package_overlays.py 3 # Copyright (C) 2012 The Android Open Source Project
44 f = open(argv[1])
49 f = open(filename)
81 f = open(argv[2], "a")
  /external/dropbear/
sshpty.c 43 * nonzero if a pty was successfully allocated. On success, open file
84 /* Open the slave side. */
85 *ttyfd = open(namebuf, O_RDWR | O_NOCTTY);
88 "pty_allocate error: ttyftd open error");
104 ptm = open("/dev/ptmx", O_RDWR | O_NOCTTY);
128 /* Open the slave side. */
129 *ttyfd = open(namebuf, O_RDWR | O_NOCTTY);
162 *ptyfd = open("/dev/ptc", O_RDWR | O_NOCTTY);
165 "Could not open /dev/ptc: %.100s", strerror(errno));
173 *ttyfd = open(name, O_RDWR | O_NOCTTY)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
complete-ant-cmd.pl 87 open( CACHE, '>'.$cacheFile ) || die "can\'t write $cacheFile: $!\n";
88 open( HELP, "$antCmd -projecthelp -f '$buildFile'|" ) || return();
101 open( CACHE, $cacheFile ) || die "can\'t read $cacheFile: $!\n";
  /external/llvm/utils/
DSAextract.py 37 #open the input file
38 input = open(sys.argv[1], 'r')
81 #open the output file
82 output = open(sys.argv[2], 'w')
84 input = open(sys.argv[1], 'r')
  /external/llvm/utils/llvm-build/llvmbuild/
configutil.py 27 f = open(input_path, "rb")
47 f = open(output_path, "rb")
60 f = open(output_path, "wb")
  /external/srec/tools/cmd/
pht_to_long.pl 19 open(PHT, "<$phtfile") || die "error opening phtfile $phtfile\n";
31 open(HH, "<$okfile") || die "error opening okfile $okfile\n";
32 open(OO, ">$otxt") || die "error opening output dict $otxt\n";
  /external/webkit/Source/WebCore/inspector/
inline-javascript-imports.py 52 inputFile = open(inputFileName, 'r')
63 importFile = open(fullPath, 'r')
70 outputFile = open(outputFileName, 'w')
  /external/webkit/Source/WebKit/chromium/scripts/
inline_js_imports.py 53 input_file = open(input_file_name, 'r')
64 import_file = open(full_path, 'r')
71 output_file = open(output_file_name, 'w')
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
OutputPort.java 2 * Copyright (C) 2011 The Android Open Source Project
44 public void open() { method in class:OutputPort
45 super.open();
47 mTargetPort.open();
  /libcore/luni/src/main/java/java/nio/channels/
SocketChannel.java 32 * A socket channel is open but not connected when created by {@code open()}.
71 * Creates an open and unconnected socket channel.
76 * @return the new channel which is open but unconnected.
80 public static SocketChannel open() throws IOException { method in class:SocketChannel
87 * This method performs a call to {@code open()} followed by a call to
107 public static SocketChannel open(SocketAddress address) throws IOException { method in class:SocketChannel
108 SocketChannel socketChannel = open();
  /system/extras/tests/cpueater/
daemonize.c 2 * Copyright (C) 2008 The Android Open Source Project
43 close(0); open("/dev/null", 0);
72 if(open(file, O_WRONLY|mode|O_CREAT, 0666) < 0) {
78 if(open("/dev/null", O_WRONLY) < 0) {

Completed in 3418 milliseconds

1 2 3 4 5 67 8 91011>>