/bionic/libc/bionic/ |
daemon.c | 2 * Copyright (C) 2008 The Android Open Source Project 41 int fd = open("/dev/null", O_RDWR);
|
/development/ndk/platforms/android-3/include/ |
fcntl.h | 2 * Copyright (C) 2008 The Android Open Source Project 46 extern int open(const char* path, int mode, ...);
|
/device/moto/shamu/camera/QCamera/stack/mm-camera-interface/src/ |
mm_camera_helper.c | 45 int file_fd = open(filename, O_RDWR | O_CREAT, 0777); 48 CDBG_HIGH("%s: cannot open file\n", __func__);
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_HttpConnector.java | 25 * This interface contains the basic methods necessary to open and use a 30 public void open(String address) throws IOException; method in interface:Support_HttpConnector
|
/external/bison/lib/ |
fcntl.in.h | 69 /* Native Windows platforms declare open(), creat() in <io.h>. */ 111 # undef open 112 # define open rpl_open 114 _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...) 116 _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...)); 118 _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...)); 120 /* On HP-UX 11, in C++ mode, open() is defined as an inline function with a 123 _GL_CXXALIASWARN (open); 126 # undef open 127 /* Assume open is always declared. * [all...] |
/external/chromium_org/build/toolchain/win/ |
setup_toolchain.py | 69 with open(source_path) as source_file: 74 with open("gyp-win-tool", 'w') as tool_file: 98 with open('environment.x86', 'wb') as env_file: 107 with open('environment.x64', 'wb') as env_file:
|
/external/chromium_org/build/util/ |
version.py | 23 The file must exist, otherwise you get the Python exception from open(). 25 for line in open(file_name, 'r').readlines(): 82 template = open(file_name, 'r').read() 92 old_contents = open(file_name, 'r').read() 99 open(file_name, 'w').write(contents)
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
FilePrintStream.h | 45 static PassOwnPtr<FilePrintStream> open(const char* filename, const char* mode);
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebIDBFactory.h | 51 virtual void open(const WebString& name, long long version, long long transactionId, WebIDBCallbacks* callbacks, WebIDBDatabaseCallbacks* databaseCallbacks, const WebString& databaseIdentifier) { BLINK_ASSERT_NOT_REACHED(); } function in class:blink::WebIDBFactory
|
/external/chromium_org/third_party/mesa/ |
generate_git_sha1.py | 34 with open(output, "w") as f:
|
/external/chromium_org/tools/gyp/test/mac/ |
gyptest-loadable-module.py | 30 if struct.unpack('4I', open(binary, 'rb').read(16))[3] != MH_BUNDLE:
|
gyptest-xcode-gcc-clang.py | 35 contents = open(test.built_file_path('obj/aliasing_default.ninja',
|
/external/chromium_org/tools/gyp/test/standalone/ |
gyptest-standalone.py | 27 contents = open(file).read()
|
/external/chromium_org/tools/json_comment_eater/ |
json_comment_eater_test.py | 16 with open(file_name, 'r') as f:
|
/external/clang/utils/analyzer/ |
update_plist_test.pl | 18 open (IN, $testFile) or die "cannot open $testFile\n"; 26 open (IN, $plistFile) or die "cannot open $plistFile\n";
|
/external/compiler-rt/SDKs/darwin/usr/include/sys/ |
fcntl.h | 5 * This file is dual licensed under the MIT and the University of Illinois Open 20 /* Determine the appropriate open function. */ 43 #define O_RDONLY 0x0000 /* open for reading only */ 44 #define O_WRONLY 0x0001 /* open for writing only */ 45 #define O_RDWR 0x0002 /* open for reading and writing */ 50 int open(const char *, int, ...) __asm(__OPEN_NAME);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
RangeNonGwtTest.java | 33 tester.setDefault(BoundType.class, BoundType.OPEN); 40 tester.testAllPublicInstanceMethods(Ranges.open(1, 3));
|
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/ |
ResourceLoader.java | 41 * Open a resource. If this resource is not found, null should be returned. 48 * @throws IOException if resource fails to open 50 Reader open(String name) throws IOException; method in interface:ResourceLoader 53 * Open a resource or throw an exception if no such resource is found. 61 * @throws IOException if resource fails to open 92 * if a call to {@link #open(String)} would also return null.
|
/external/llvm/utils/ |
UpdateCMakeLists.pl | 64 open(IN, $cmakeList); 65 open(OUT, ">", $cmakeListNew); 87 open(FILE, $cmakeList) or 88 die("Cannot open $cmakeList when computing digest\n"); 93 open(FILE, $cmakeListNew) or 94 die("Cannot open $cmakeListNew when computing digest\n");
|
test_debuginfo.pl | 38 open(INPUT, $testcase_file); 39 open(OUTPUT, ">$debugger_script_file");
|
/external/strace/linux/x86_64/ |
gentab.pl | 36 open(F,$ARGV[0]) || die "cannot open template file $ARGV[0]\n"; 46 open(SL, ">syscallnum.h") || die "cannot create syscallnum.h\n"; 48 open(S,$ARGV[1]) || die "cannot open syscall file $ARGV[1]\n";
|
/external/valgrind/main/memcheck/tests/linux/ |
sys-openat.c | 11 int dfd = open ("/tmp", O_RDONLY);
|