HomeSort by relevance Sort by last modified time
    Searched refs:open (Results 201 - 225 of 4686) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tarfile.py 45 self.tar = tarfile.open(self.tarname, mode=self.mode, encoding="iso8859-1")
63 fobj1 = open(os.path.join(TEMPDIR, "ustar/regtype"), "rU")
79 fobj1 = open(os.path.join(TEMPDIR, "ustar/regtype"), "rU")
88 fobj = open(os.path.join(TEMPDIR, "ustar/regtype"), "rb")
165 # This test checks if tarfile.open() is able to open an empty tar
168 tarfile.open(tmpname, self.mode.replace("r", "w")).close()
170 tar = tarfile.open(tmpname, self.mode)
173 self.fail("tarfile.open() failed on empty archive")
178 # This test guarantees that tarfile.open() does not treat an empt
    [all...]
  /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/generic/goldfish/opengl/shared/OpenglOsUtils/
osDynLibrary.h 2 * Copyright (C) 2011 The Android Open Source Project
30 static dynLibrary *open(const char *p_libName);
  /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
31 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/sandbox/win/src/
sync_policy.cc 33 // Add the open rule.
35 PolicyRule open(result);
37 if (!open.AddStringMatch(IF, OpenEventParams::NAME, name, CASE_INSENSITIVE))
45 open.AddNumberMatch(IF_NOT, OpenEventParams::ACCESS, restricted_flags, AND);
48 if (!policy->AddRule(IPC_OPENEVENT_TAG, &open))
  /external/chromium_org/third_party/JSON/JSON-2.59/
Makefile.PL 68 open(IN, "Makefile");
69 open(OUT,">Makefile.tmp") || die;
  /external/chromium_org/third_party/WebKit/Source/core/scripts/
list_idl_files_with_partial_interface.py 40 with open(filename) as f:
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyRange.idl 34 [CallWith=ScriptExecutionContext, RaisesException] static IDBKeyRange lowerBound(any bound, [Default=Undefined] optional boolean open);
35 [CallWith=ScriptExecutionContext, RaisesException] static IDBKeyRange upperBound(any bound, [Default=Undefined] optional boolean open);
  /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) { WEBKIT_ASSERT_NOT_REACHED(); } function in class:WebKit::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-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");
  /external/openssh/openbsd-compat/
daemon.c 71 if (!noclose && (fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
  /frameworks/base/core/java/android/speech/tts/
AudioPlaybackQueueItem.java 2 * Copyright (C) 2011 The Android Open Source Project
65 mDone.open();
73 mDone.open();
82 mDone.open();
103 mDone.open();
  /frameworks/base/libs/hwui/thread/
Future.h 2 * Copyright (C) 2013 The Android Open Source Project
47 mBarrier.open();
  /hardware/libhardware/modules/camera/
CameraHAL.h 2 * Copyright (C) 2013 The Android Open Source Project
39 int open(const hw_module_t* mod, const char* name, hw_device_t** dev);

Completed in 988 milliseconds

1 2 3 4 5 6 7 891011>>