OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BlockingReceive
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/components/nacl/loader/
nacl_ipc_adapter_unittest.cc
46
int
BlockingReceive
(void* buf, size_t buf_size) {
49
return adapter_->
BlockingReceive
(&msg);
89
int bytes_read =
BlockingReceive
(buf, kBufSize);
195
int bytes_read =
BlockingReceive
(buf, bytes_requested);
199
bytes_read +=
BlockingReceive
(&buf[bytes_requested],
212
bytes_read =
BlockingReceive
(buf, kBufSize);
300
int result =
BlockingReceive
(buf, kBufSize);
303
// Test the "previously had an error" case.
BlockingReceive
should return
305
result =
BlockingReceive
(buf, kBufSize);
nacl_ipc_adapter.cc
83
return static_cast<ssize_t>(ToAdapter(handle)->
BlockingReceive
(msg));
330
int NaClIPCAdapter::
BlockingReceive
(NaClImcTypedMsgHdr* msg) {
Completed in 49 milliseconds