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

1 2

  /external/chromium/base/win/
scoped_comptr.h 77 // Used to receive object pointers as out arguments (and take ownership).
79 // Usage: Foo(p.Receive());
80 Interface** Receive() {
87 return reinterpret_cast<void**>(Receive());
111 return object->QueryInterface(Receive());
132 QueryInterface(my_identity.Receive());
135 other->QueryInterface(other_identity.Receive());
scoped_bstr.h 69 // Used to receive BSTRs as out arguments (and take ownership).
71 // Usage: GetBstr(bstr.Receive());
72 BSTR* Receive();
scoped_comptr_unittest.cc 47 EXPECT_TRUE(SUCCEEDED(CoGetMalloc(1, mem_alloc.Receive())));
51 reinterpret_cast<void**>(qi_test.Receive())));
scoped_bstr.cc 41 BSTR* ScopedBstr::Receive() {
scoped_bstr_unittest.cc 51 GiveMeABstr(b2.Receive());
scoped_variant.h 86 // Used to receive a VARIANT as an out argument (and take ownership).
88 // Usage: GetVariant(var.receive());
89 VARIANT* Receive();
scoped_variant.cc 79 VARIANT* ScopedVariant::Receive() {
  /external/chromium/base/
sync_socket.h 52 // buffer is a pointer to the buffer to receive data.
53 // length is the number of bytes of data to receive (must be non-zero).
55 size_t Receive(void* buffer, size_t length);
57 // Returns the number of bytes available. If non-zero, Receive() will not
sync_socket_posix.cc 21 // To avoid users sending negative message lengths to Send/Receive
97 size_t SyncSocket::Receive(void* buffer, size_t length) {
sync_socket_win.cc 23 // To avoid users sending negative message lengths to Send/Receive
127 size_t SyncSocket::Receive(void* buffer, size_t length) {
  /external/chromium/net/http/
url_security_manager_win.cc 116 security_manager_.Receive(),
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_win_unittest.cc 177 CreateI4Variant(1), text_dispatch.Receive());
181 hr = text_dispatch.QueryInterface(text_accessible.Receive());
207 text_dispatch.Receive());
210 hr = text_dispatch.QueryInterface(text_accessible.Receive());
accessibility_win_browsertest.cc 129 HRESULT hr = accessible->QueryInterface(service_provider.Receive());
155 hr = QueryIAccessible2(accessible, accessible2.Receive());
367 HRESULT hr = document_accessible->get_accParent(parent_dispatch.Receive());
611 reinterpret_cast<void**>(browser_accessible.Receive()));
619 hr = QueryIAccessible2(document_accessible, document_accessible2.Receive());
629 hr = parent->get_accParent(parent_dispatch.Receive());
637 hr = parent_dispatch.QueryInterface(parent.Receive());
672 service_provider.Receive());
679 reinterpret_cast<void**>(document_isimpledomnode.Receive()));
697 body_isimpledomnode.Receive());
    [all...]
  /frameworks/base/opengl/libs/GLES2_dbg/src/
server.cpp 109 void Receive(glesv2debugger::Message & cmd)
116 Die("Failed to receive response length");
130 Die("Failed to receive response");
154 Receive(cmd);
162 // TODO: use per DbgContext send/receive buffer and async socket
203 // TODO: factor Receive & TryReceive out and into MessageLoop, or add control argument.
204 // mean while, if server is sending a SETPROP then don't try to receive,
208 // try to receive commands even though not expecting response,
218 Receive(cmd);
295 Receive(cmd)
    [all...]
vertex.cpp 91 Receive(cmd);
199 Receive(cmd);
header.h 167 // every Debug_gl* function calls this to send message to client and possibly receive commands
171 void Receive(glesv2debugger::Message & cmd);
  /external/chromium/chrome/browser/
platform_util_win.cc 69 HRESULT hr = SHGetDesktopFolder(desktop.Receive());
jumplist_win.cc 224 result = link.QueryInterface(property_store.Receive());
321 result = collection.QueryInterface(object_array.Receive());
376 result = collection.QueryInterface(object_array.Receive());
  /external/v8/test/cctest/
test-sockets.cc 66 bytes_read += client_->Receive(data_ + bytes_read, data_size_ - bytes_read);
136 // Send and receive some data.
141 // Send and receive some more data.
150 // Send and receive even more data.
  /external/v8/src/
debug-agent.cc 223 // Shutdown the socket to end the blocking receive.
242 char c = '\0'; // One character receive buffer.
248 received = conn->Receive(&c, 1);
261 if (header_buffer_position == 2) { // Receive buffer contains CRLF.
432 // Receive the full buffer before returning unless an error occours.
436 int received = conn->Receive(data + total_received, len - total_received);
platform-posix.cc 281 int Receive(char* data, int len) const;
375 int POSIXSocket::Receive(char* data, int len) const {
  /external/chromium/chrome/browser/importer/
ie_importer.cc 161 if (SUCCEEDED(result = url_history_stg2->EnumUrls(enum_url.Receive()))) {
227 HRESULT result = PStoreCreateInstance(pstore.Receive(), 0, 0, 0);
238 &AutocompleteGUID, 0, item.Receive());
  /external/chromium/chrome/browser/autocomplete/
autocomplete_accessibility.cc 25 reinterpret_cast<void **>(default_accessibility_server_.Receive()));
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
dplay.h 146 STDMETHOD(Receive) (THIS_ LPDPID,LPDPID,DWORD,LPVOID,LPDWORD) PURE;
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
DPLAY.H 146 STDMETHOD(Receive) (THIS_ LPDPID,LPDPID,DWORD,LPVOID,LPDWORD) PURE;

Completed in 403 milliseconds

1 2