HomeSort by relevance Sort by last modified time
    Searched refs:synchronous (Results 1 - 25 of 37) sorted by null

1 2

  /frameworks/rs/tests/latency/
latency.cpp 14 bool synchronous = false; local
43 synchronous = true;
49 if (synchronous)
50 printf("forcing synchronous\n");
58 if (synchronous) flags |= RS_INIT_SYNCHRONOUS;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
vp9_thread_test.cc 56 const bool synchronous = GetParam(); local
57 if (synchronous) {
79 const bool synchronous = GetParam(); local
80 if (synchronous) {
156 INSTANTIATE_TEST_CASE_P(Synchronous, VP9WorkerThreadTest, ::testing::Bool());
  /external/chromium_org/chrome/browser/mac/
keystone_glue.h 98 // YES if a synchronous promotion operation is in progress (promotion during
160 // be installed if necessary. If synchronous is NO, the promotion may occur
161 // in the background. synchronous should be YES for promotion during
165 synchronous:(BOOL)synchronous;
  /external/libvpx/libvpx/test/
vp9_thread_test.cc 56 const bool synchronous = GetParam(); local
57 if (synchronous) {
79 const bool synchronous = GetParam(); local
80 if (synchronous) {
216 INSTANTIATE_TEST_CASE_P(Synchronous, VP9WorkerThreadTest, ::testing::Bool());
  /frameworks/av/include/media/
IStreamSource.h 85 Command cmd, bool synchronous, const sp<AMessage> &msg = NULL) = 0;
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerStreamListener.h 37 Command cmd, bool synchronous, const sp<AMessage> &extra);
NuPlayerStreamListener.cpp 75 Command cmd, bool synchronous, const sp<AMessage> &extra) {
76 CHECK(!synchronous);
  /external/chromium_org/chrome/common/extensions/docs/server2/
cache_chain_object_store.py 12 The in-memory cache is inbuilt since it's synchronous, but the object store
  /external/lldb/include/lldb/Breakpoint/
WatchpointOptions.h 70 // Watchpoint callbacks come in two forms, synchronous and asynchronous. Synchronous callbacks will get
72 // "under the radar" of the thread plans. There are a couple of restrictions to synchronous callbacks:
74 // 2) Watchpoints with synchronous callbacks can't have conditions (or rather, they can have them, but they
97 /// @param[in] synchronous
98 /// Whether this is a synchronous or asynchronous callback. See discussion above.
100 void SetCallback (WatchpointHitCallback callback, const lldb::BatonSP &baton_sp, bool synchronous = false);
116 /// whether we are currently executing synchronous or asynchronous callbacks.
BreakpointOptions.h 83 // Breakpoint callbacks come in two forms, synchronous and asynchronous. Synchronous callbacks will get
85 // "under the radar" of the thread plans. There are a couple of restrictions to synchronous callbacks:
87 // 2) Breakpoints with synchronous callbacks can't have conditions (or rather, they can have them, but they
110 /// @param[in] synchronous
111 /// Whether this is a synchronous or asynchronous callback. See discussion above.
113 void SetCallback (BreakpointHitCallback callback, const lldb::BatonSP &baton_sp, bool synchronous = false);
129 /// whether we are currently executing synchronous or asynchronous callbacks.
  /frameworks/av/media/libmedia/
IStreamSource.cpp 155 Command cmd, bool synchronous, const sp<AMessage> &msg) {
159 data.writeInt32(static_cast<int32_t>(synchronous));
192 bool synchronous = static_cast<bool>(data.readInt32()); local
200 issueCommand(cmd, synchronous, msg);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMDebuggerAgent.h 110 void pauseOnNativeEventIfNeeded(PassRefPtr<JSONObject> eventData, bool synchronous);
InspectorDOMDebuggerAgent.cpp 435 void InspectorDOMDebuggerAgent::pauseOnNativeEventIfNeeded(PassRefPtr<JSONObject> eventData, bool synchronous)
439 if (synchronous)
  /external/chromium_org/ui/file_manager/video_player/js/
test_util.js 23 * Namespace for synchronous utility functions.
79 // Return true for asynchronous functions and false for synchronous.
  /external/chromium_org/net/websockets/
websocket_channel.h 231 // error code, usually OK. If |synchronous| is true, then OnWriteDone() is
234 ChannelState OnWriteDone(bool synchronous, int result) WARN_UNUSED_RESULT;
242 // code. If |synchronous| is true, then OnReadDone() is being called from
244 ChannelState OnReadDone(bool synchronous, int result) WARN_UNUSED_RESULT;
websocket_channel.cc 648 ChannelState WebSocketChannel::OnWriteDone(bool synchronous, int result) {
657 if (!synchronous)
710 ChannelState WebSocketChannel::OnReadDone(bool synchronous, int result) {
730 if (!synchronous)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Throttler.js 38 // Process might issue synchronous calls to this throttler.
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
vp9_thread_test.cc 39 const bool synchronous = GetParam(); local
40 if (synchronous) {
312 INSTANTIATE_TEST_CASE_P(Synchronous, VP9WorkerThreadTest, ::testing::Bool());
  /frameworks/native/libs/gui/
SurfaceComposerClient.cpp 128 void closeGlobalTransactionImpl(bool synchronous);
179 static void closeGlobalTransaction(bool synchronous) {
180 Composer::getInstance().closeGlobalTransactionImpl(synchronous);
208 void Composer::closeGlobalTransactionImpl(bool synchronous) {
217 mForceSynchronous |= synchronous;
289 // Resizing a surface makes the transaction synchronous.
552 void SurfaceComposerClient::closeGlobalTransaction(bool synchronous) {
553 Composer::closeGlobalTransaction(synchronous);
  /external/chromium_org/chrome/browser/sessions/
session_restore.cc 89 // This is not part of SessionRestoreImpl so that synchronous destruction
519 bool synchronous,
526 synchronous_(synchronous),
558 bool synchronous() const { return synchronous_; } function in class:__anon9285::SessionRestoreImpl
753 // If we're not synchronous we need to delete ourself.
    [all...]
  /external/ppp/pppd/plugins/rp-pppoe/
pppoe.h 261 int synchronous; /* Use synchronous PPP */ member in struct:PPPoEConnectionStruct
  /frameworks/native/include/gui/
SurfaceComposerClient.h 121 static void closeGlobalTransaction(bool synchronous = false);
  /external/chromium_org/v8/test/promises-aplus/lib/
mocha.js 106 // synchronous
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineModelImpl.js 358 this.addWarning(WebInspector.UIString("Forced synchronous layout is a possible performance bottleneck."));
  /external/chromium_org/ui/file_manager/file_manager/background/js/
test_util.js 23 * Namespace for synchronous utility functions.
673 // Return true for asynchronous functions and false for synchronous.

Completed in 793 milliseconds

1 2