Home
last modified time | relevance | path

Searched refs:BlockUntilComplete (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/native_client_sdk/src/examples/api/file_io/
Dfile_io.cc143 int32_t rv = file_system_.Open(1024 * 1024, pp::BlockUntilComplete()); in OpenFileSystem()
167 pp::BlockUntilComplete()); in Save()
186 pp::BlockUntilComplete()); in Save()
196 int32_t flush_result = file.Flush(pp::BlockUntilComplete()); in Save()
213 file.Open(ref, PP_FILEOPENFLAG_READ, pp::BlockUntilComplete()); in Load()
222 int32_t query_result = file.Query(&info, pp::BlockUntilComplete()); in Load()
241 pp::BlockUntilComplete()); in Load()
264 int32_t result = ref.Delete(pp::BlockUntilComplete()); in Delete()
316 PP_MAKEDIRECTORYFLAG_NONE, pp::BlockUntilComplete()); in MakeDir()
/external/chromium_org/native_client_sdk/src/doc/devguide/coding/
Dfile-io.rst137 create a file. Because the callback function is ``pp::BlockUntilComplete``,
150 function is ``pp::BlockUntilComplete``, this thread is blocked until Open
177 ``pp::BlockUntilComplete``, but ``ReadDirectoryEntries`` returns results in
228 ``pp::BlockUntilComplete`` as its callback. This is only possible because we
236 int32_t rv = file_system_.Open(1024 * 1024, pp::BlockUntilComplete());
319 pp::BlockUntilComplete());
339 pp::BlockUntilComplete());
352 int32_t flush_result = file.Flush(pp::BlockUntilComplete());
381 file.Open(ref, PP_FILEOPENFLAG_READ, pp::BlockUntilComplete());
396 int32_t query_result = file.Query(&info, pp::BlockUntilComplete());
[all …]
/external/chromium_org/ppapi/shared_impl/
Dtracked_callback.h149 int32_t BlockUntilComplete();
Dtracked_callback.cc205 int32_t TrackedCallback::BlockUntilComplete() { in BlockUntilComplete() function in ppapi::TrackedCallback
/external/chromium_org/ppapi/cpp/
Dcompletion_callback.h267 inline CompletionCallback BlockUntilComplete() { in BlockUntilComplete() function
/external/chromium_org/native_client_sdk/src/examples/demo/drive/
Ddrive.cc116 int32_t result = url_loader.Open(url_request, pp::BlockUntilComplete()); in ReadUrl()
143 buffer_, kReadBufferSize, pp::BlockUntilComplete()); in ReadUrl()
/external/chromium_org/ppapi/thunk/
Denter.cc94 retval_ = callback_->BlockUntilComplete(); in SetResult()
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
Dplugin.cc69 pp::BlockUntilComplete()); in LoadHelperNaClModuleInternal()
/external/chromium_org/ppapi/tests/
Dtest_graphics_2d.cc616 int32_t rv = dc.Flush(pp::BlockUntilComplete()); in TestFlush()