Searched refs:GetBufferedAmount (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/ppapi/cpp/
H A Dwebsocket.h150 /// GetBufferedAmount() returns the number of bytes of text and binary
155 uint64_t GetBufferedAmount();
H A Dwebsocket.cc87 uint64_t WebSocket::GetBufferedAmount() { function in class:pp::WebSocket
91 return get_interface<PPB_WebSocket_1_0>()->GetBufferedAmount(pp_resource());
/external/chromium_org/ppapi/thunk/
H A Dppb_websocket_api.h52 virtual uint64_t GetBufferedAmount() = 0;
H A Dppb_websocket_thunk.cc79 uint64_t GetBufferedAmount(PP_Resource web_socket) { function in namespace:ppapi::thunk::__anon10328
80 VLOG(4) << "PPB_WebSocket::GetBufferedAmount()";
84 return enter.object()->GetBufferedAmount();
150 &GetBufferedAmount,
/external/chromium_org/ppapi/utility/websocket/
H A Dwebsocket_api.h70 /// GetBufferedAmount() returns the number of bytes of text and binary
75 uint64_t GetBufferedAmount();
H A Dwebsocket_api.cc127 uint64_t WebSocketAPI::GetBufferedAmount() { function in class:pp::WebSocketAPI
128 return impl_->GetBufferedAmount();
/external/chromium_org/ppapi/c/
H A Dppb_websocket.h342 * GetBufferedAmount() returns the number of bytes of text and binary
351 uint64_t (*GetBufferedAmount)(PP_Resource web_socket); member in struct:PPB_WebSocket_1_0
/external/chromium_org/ppapi/api/
H A Dppb_websocket.idl352 * GetBufferedAmount() returns the number of bytes of text and binary
362 uint64_t GetBufferedAmount([in] PP_Resource web_socket);
/external/chromium_org/ppapi/proxy/
H A Dwebsocket_resource.h46 virtual uint64_t GetBufferedAmount() OVERRIDE;
142 // specification. The calculated value can be read via GetBufferedAmount().
148 // specification. The calculated value can be read via GetBufferedAmount().
H A Dwebsocket_resource_unittest.cc108 uint64_t amount = websocket_iface->GetBufferedAmount(res.get());
H A Dwebsocket_resource.cc285 uint64_t WebSocketResource::GetBufferedAmount() { function in class:ppapi::proxy::WebSocketResource
/external/chromium_org/ppapi/tests/
H A Dtest_websocket.cc354 uint64_t bufferedAmount = websocket_interface_->GetBufferedAmount(ws);
918 buffered_amount = websocket_interface_->GetBufferedAmount(ws);
940 uint64_t base_buffered_amount = websocket_interface_->GetBufferedAmount(ws);
947 buffered_amount = websocket_interface_->GetBufferedAmount(ws);
953 buffered_amount = websocket_interface_->GetBufferedAmount(ws);
1195 ASSERT_EQ(0, ws.GetBufferedAmount());
1253 ASSERT_EQ(0, ws.GetBufferedAmount());
1573 buffered_amount = websocket.GetBufferedAmount();
1587 uint64_t base_buffered_amount = websocket.GetBufferedAmount();
1594 buffered_amount = websocket.GetBufferedAmount();
[all...]
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
H A Dpnacl_shim.c2076 return iface->GetBufferedAmount(web_socket);
5038 .GetBufferedAmount = (uint64_t (*)(PP_Resource web_socket))&Pnacl_M18_PPB_WebSocket_GetBufferedAmount,

Completed in 3062 milliseconds