HomeSort by relevance Sort by last modified time
    Searched defs:open (Results 1 - 25 of 915) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ui/file_manager/video_player/js/
background.js 59 open(videos);
62 open('', 'error'); // Empty URL shows the error message.
73 function open(videos) { function
  /external/chromium_org/content/test/data/indexeddb/
bug_84933.js 9 indexedDB.open("bug_84933_" + i.toString()).onsuccess = function() {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
fcntl2.h 24 /* Check that calls to open and openat with O_CREAT set have an
29 open) __nonnull ((1));
37 "open can be called either with 2 or 3 arguments, not more");
39 "open with O_CREAT in second argument needs 3 arguments");
42 open (__const char *__path, int __oflag, ...) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
fcntl2.h 24 /* Check that calls to open and openat with O_CREAT set have an
29 open) __nonnull ((1));
37 "open can be called either with 2 or 3 arguments, not more");
39 "open with O_CREAT in second argument needs 3 arguments");
42 open (__const char *__path, int __oflag, ...) function
  /development/ndk/sources/android/libportable/arch-mips/
open.c 2 * Copyright 2012, The Android Open Source Project
76 int WRAP(open)(const char *pathname, int flags, ...) function
  /frameworks/av/media/img_utils/src/
Output.cpp 2 * Copyright 2014 The Android Open Source Project
24 status_t Output::open() { return OK; } function in class:android::img_utils::Output
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
anydbm.py 6 d = dbm.open(file, 'w', 0666)
11 d = anydbm.open(file, 'w')
57 def open(file, flag='r', mode=0666): function
58 """Open or create database at path given by *file*.
79 raise error, "need 'c' or 'n' flag to open new db"
85 return mod.open(file, flag, mode)
dbhash.py 13 __all__ = ["error","open"]
17 def open(file, flag = 'r', mode=0666): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
anydbm.py 6 d = dbm.open(file, 'w', 0666)
11 d = anydbm.open(file, 'w')
57 def open(file, flag='r', mode=0666): function
58 """Open or create database at path given by *file*.
79 raise error, "need 'c' or 'n' flag to open new db"
85 return mod.open(file, flag, mode)
dbhash.py 13 __all__ = ["error","open"]
17 def open(file, flag = 'r', mode=0666): function
  /sdk/emulator/opengl/shared/OpenglOsUtils/
osDynLibrary.cpp 2 * Copyright (C) 2011 The Android Open Source Project
25 dynLibrary *dynLibrary::open(const char *p_libName) function in class:osUtils::dynLibrary
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
InputPort.java 2 * Copyright (C) 2011 The Android Open Source Project
42 public void open() { method in class:InputPort
43 super.open();
45 mSourcePort.open();
  /bionic/libc/bionic/
open.cpp 2 * Copyright (C) 2008 The Android Open Source Project
47 return open(pathname, O_CREAT | O_TRUNC | O_WRONLY, mode);
51 int open(const char* pathname, int flags, ...) { function
63 __strong_alias(open64, open);
67 __fortify_chk_fail("open(O_CREAT): called without specifying a mode", 0);
  /dalvik/dx/src/com/android/multidex/
ClassPathElement.java 2 * Copyright (C) 2013 The Android Open Source Project
30 * Open a "file" from this {@code ClassPathElement}.
35 InputStream open(String path) throws IOException; method in interface:ClassPathElement
FolderPathElement.java 2 * Copyright (C) 2013 The Android Open Source Project
37 public InputStream open(String path) throws FileNotFoundException { method in class:FolderPathElement
  /external/apache-harmony/support/src/test/java/tests/support/
Support_ServerSocket.java 33 public void open() throws IOException; method in interface:Support_ServerSocket
  /external/bison/lib/
open.c 0 /* Open a descriptor to a file.
25 /* Get the original definition of open. It might be defined as a macro. */
33 return open (filename, flags, mode);
53 open (const char *filename, int flags, ...) function
74 file types that require non-blocking handling in open().
97 - if O_CREAT is specified, open() must fail because of the semantics
99 - if O_WRONLY or O_RDWR is specified, open() must fail because POSIX
100 <http://www.opengroup.org/susv3/functions/open.html> says that it
103 - if O_CREAT is specified, open() must fail since open() cannot creat
    [all...]
  /external/chromium_org/content/child/indexed_db/
webidbfactory_impl.cc 32 void WebIDBFactoryImpl::open(const WebString& name, function in class:content::WebIDBFactoryImpl
  /external/chromium_org/third_party/WebKit/Source/wtf/
FilePrintStream.cpp 44 PassOwnPtr<FilePrintStream> FilePrintStream::open(const char* filename, const char* mode) function in class:WTF::FilePrintStream
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
web_mock.py 48 def open(self, url): member in class:MockBrowser
  /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/angle/src/libGLESv2/
ProgramBinary.cpp 75 size_t open = name->find_last_of('['); local
77 if (open != std::string::npos && close == name->length() - 1)
79 subscript = atoi(name->substr(open + 1).c_str());
80 name->erase(open);
    [all...]
  /external/chromium_org/third_party/tlslite/tlslite/integration/
imap4_tls.py 84 def open(self, host = '', port = IMAP4_TLS_PORT): member in class:IMAP4_TLS
  /external/smack/src/org/jivesoftware/smackx/pubsub/
AccessModel.java 25 open, enum constant in enum:AccessModel
PublishModel.java 31 open; enum constant in enum:PublishModel

Completed in 647 milliseconds

1 2 3 4 5 6 7 8 91011>>