/frameworks/base/core/java/android/speech/tts/ |
D | AudioPlaybackQueueItem.java | 65 mDone.open(); in run() 73 mDone.open(); in run() 82 mDone.open(); in run() 103 mDone.open(); in stop()
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
D | InputPort.java | 42 public void open() { in open() method in InputPort 43 super.open(); in open() 45 mSourcePort.open(); in open()
|
D | OutputPort.java | 44 public void open() { in open() method in OutputPort 45 super.open(); in open() 47 mTargetPort.open(); in open()
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/ |
D | IfElseFilterTest.java | 59 Bitmap videoBitmap = BitmapFactory.decodeStream(assetMgr.open("0002_000390.jpg")); in testIfElseFilterTrue() 61 Bitmap imageBitmap = BitmapFactory.decodeStream(assetMgr.open("XZZ019.jpg")); in testIfElseFilterTrue() 90 Bitmap videoBitmap = BitmapFactory.decodeStream(assetMgr.open("0002_000390.jpg")); in testIfElseFilterFalse() 92 Bitmap imageBitmap = BitmapFactory.decodeStream(assetMgr.open("XZZ019.jpg")); in testIfElseFilterFalse()
|
/frameworks/base/services/jni/ |
D | com_android_server_UsbDeviceManager.cpp | 68 int fd = open(DRIVER_NAME, O_RDWR); in android_server_UsbDeviceManager_getAccessoryStrings() 90 int fd = open(DRIVER_NAME, O_RDWR); in android_server_UsbDeviceManager_openAccessory() 105 int fd = open(DRIVER_NAME, O_RDWR); in android_server_UsbDeviceManager_isStartRequested() 117 int fd = open(DRIVER_NAME, O_RDWR); in android_server_UsbDeviceManager_getAudioMode()
|
/frameworks/base/core/java/android/net/http/ |
D | AndroidHttpClientConnection.java | 80 private volatile boolean open; field in AndroidHttpClientConnection 128 this.open = true; in bind() 146 if (this.open) { in assertNotOpen() 152 if (!this.open) { in assertOpen() 159 return (this.open && this.socket != null && this.socket.isConnected()); in isOpen() 220 this.open = false; in shutdown() 228 if (!this.open) { in close() 231 this.open = false; in close()
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | DiagCommonKinds.inc | 1 …rr_cannot_open_input, DiagnosticEngine::Error, "can not open input file `%0': %1", "can not open i… 2 …nnot_open_output_file, DiagnosticEngine::Fatal, "cannot open output file `%0': %1", "cannot open o… 3 …_open_search_dir, DiagnosticEngine::Warning, "can not open search directory `-L%0'", "can not open… 27 DIAG(err_cannot_open_file, DiagnosticEngine::Error, "cannot open file `%0': %1.", "cannot open file… 31 …p_file, DiagnosticEngine::Error, "cannot open memory mapped file %0 from offset %1 to length %2.",…
|
/frameworks/compile/mclinker/unittests/ |
D | FileHandleTest.cpp | 48 ASSERT_TRUE(m_pTestee->open(path, FileHandle::ReadOnly)); in TEST_F() 66 int fd = ::open(path.native().c_str(), O_RDONLY); in TEST_F() 89 ASSERT_TRUE(m_pTestee->open(path, FileHandle::ReadOnly)); in TEST_F()
|
D | MemoryAreaTest.cpp | 80 area->handler()->open(path, FileHandle::ReadOnly); in TEST_F() 124 area->handler()->open(path, FileHandle::ReadOnly); in TEST_F() 153 area->handler()->open(path, FileHandle::ReadWrite); in TEST_F()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/ |
D | CameraTest.java | 94 mCamera = Camera.open(CAMERA_ID); in initializeMessageLooper() 95 startDone.open(); in initializeMessageLooper() 133 mPreviewDone.open(); in onPreviewFrame() 170 mSnapshotDone.open(); in onPictureTaken()
|
/frameworks/base/docs/html/guide/faq/ |
D | licensingandoss.jd | 6 <li><a href="#mirror">Where can I find the open source components of Android?</a></li> 7 <li><a href="#timeline">When will we see more code released under open source licenses?</a></li> 11 <a name="mirror" id="mirror"></a><h2>Where can I find the open source components of Android?</h2>
|
/frameworks/compile/libbcc/include/bcc/Support/ |
D | FileBase.h | 84 bool open(); 96 return open(); in reopen()
|
/frameworks/compile/mclinker/lib/Support/Unix/ |
D | FileSystem.inc | 64 errno = 0; // opendir() will set errno if it failed to open directory. 98 int open(const Path& pPath, int pOFlag) 100 return ::open(pPath.native().c_str(), pOFlag); 103 int open(const Path& pPath, int pOFlag, int pPerm) 125 return ::open(pPath.native().c_str(), pOFlag, perm);
|
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/common/ |
D | FwdLockGlue.c | 79 int fileDesc = open(strKeyFilename, O_RDONLY); in FwdLockGlue_InitializeRoundKeys() 88 fileDesc = open(strKeyFilename, O_CREAT | O_TRUNC | O_WRONLY, S_IRUSR); in FwdLockGlue_InitializeRoundKeys() 130 int fileDesc = open("/dev/urandom", O_RDONLY); in FwdLockGlue_GetRandomNumber()
|
/frameworks/compile/libbcc/lib/Support/ |
D | FileBase.cpp | 72 open(); in FileBase() 81 bool FileBase::open() { in open() function in FileBase 85 mFD = ::open(mName.c_str(), mOpenFlags, 0644); in open()
|
/frameworks/native/cmds/dumpstate/ |
D | utils.c | 76 if ((fd = open(cmdpath, O_RDONLY)) < 0) { in __for_each_pid() 127 if ((fd = open(commpath, O_RDONLY)) < 0) { in for_each_tid_helper() 158 if ((fd = open(path, O_RDONLY)) < 0) { in show_wchan() 215 int fd = open(path, O_RDONLY); in dump_file() 389 int fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); in redirect_to_file() 482 int fd = open(traces_path, O_CREAT | O_WRONLY | O_TRUNC | O_NOFOLLOW, 0666); /* -rw-rw-rw- */ in dump_traces() 532 int fd = open(path, O_RDONLY); in dump_traces()
|
/frameworks/compile/mclinker/lib/Support/ |
D | FileHandle.cpp | 78 bool FileHandle::open(const sys::fs::Path& pPath, in open() function in FileHandle 89 m_Handler = sys::fs::detail::open(pPath, oflag(pMode)); in open() 91 m_Handler = sys::fs::detail::open(pPath, oflag(pMode), (int)pPerm); in open()
|
D | MemoryAreaFactory.cpp | 42 if (!handler->open(pPath, pMode)) { in produce() 66 if (!handler->open(pPath, pMode, pPerm)) { in produce()
|
/frameworks/compile/slang/tests/ |
D | test.py | 52 f = open(filename, 'r') 68 stdout_file = open('stdout.txt', 'w+') 69 stderr_file = open('stderr.txt', 'w+')
|
/frameworks/base/nfc-extras/java/com/android/nfc_extras/ |
D | NfcExecutionEnvironment.java | 166 public void open() throws EeIOException { in open() method in NfcExecutionEnvironment 168 Bundle b = mExtras.getService().open(mExtras.mPackageName, mToken); in open()
|
/frameworks/base/core/jni/ |
D | android_server_Watchdog.cpp | 35 int stackFd = open(buf, O_RDONLY); in dumpOneStack() 67 int outFd = open(path, O_WRONLY | O_APPEND | O_CREAT, in dumpKernelStacks()
|
/frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/ |
D | BlockingCameraManager.java | 217 mDeviceReady.open(); in onOpened() 240 mDeviceReady.open(); in onDisconnected() 266 mDeviceReady.open(); in onError()
|
/frameworks/compile/mclinker/include/mcld/Support/ |
D | FileSystem.h | 101 int open(const Path& pPath, int pOFlag); 102 int open(const Path& pPath, int pOFlag, int pPermission);
|
/frameworks/base/nfc-extras/tests/src/com/android/nfc_extras/tests/ |
D | BasicNfcEeTest.java | 57 mEe.open(); in testSendCardManagerApdu() 76 mEe.open(); in testSendCardManagerApduMultiple()
|
/frameworks/base/core/java/android/util/ |
D | JsonWriter.java | 203 return open(JsonScope.EMPTY_ARRAY, "["); in beginArray() 222 return open(JsonScope.EMPTY_OBJECT, "{"); in beginObject() 238 private JsonWriter open(JsonScope empty, String openBracket) throws IOException { in open() method in JsonWriter
|