Searched defs:protocol_count (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/ppapi/cpp/
H A Dwebsocket.cc36 uint32_t protocol_count, const CompletionCallback& callback) {
42 if (protocol_count)
43 c_protocols = new PP_Var[protocol_count];
44 for (uint32_t i = 0; i < protocol_count; ++i)
48 pp_resource(), url.pp_var(), c_protocols, protocol_count,
35 Connect(const Var& url, const Var protocols[], uint32_t protocol_count, const CompletionCallback& callback) argument
/external/chromium_org/ppapi/thunk/
H A Dppb_websocket_thunk.cc39 uint32_t protocol_count,
47 protocol_count,
36 Connect(PP_Resource web_socket, struct PP_Var url, const struct PP_Var protocols[], uint32_t protocol_count, struct PP_CompletionCallback callback) argument
/external/chromium_org/ppapi/utility/websocket/
H A Dwebsocket_api.cc33 uint32_t protocol_count) {
37 WebSocket::Connect(url, protocols, protocol_count, callback);
115 uint32_t protocol_count) {
116 return impl_->Connect(url, protocols, protocol_count);
32 Connect(const Var& url, const Var protocols[], uint32_t protocol_count) argument
114 Connect(const Var& url, const Var protocols[], uint32_t protocol_count) argument
/external/chromium_org/ppapi/proxy/
H A Dwebsocket_resource.cc81 uint32_t protocol_count,
99 protocol_strings.reserve(protocol_count);
100 for (uint32_t i = 0; i < protocol_count; ++i) {
78 Connect( const PP_Var& url, const PP_Var protocols[], uint32_t protocol_count, scoped_refptr<TrackedCallback> callback) argument
/external/chromium_org/ppapi/tests/
H A Dtest_websocket.cc309 uint32_t protocol_count = 0U; local
312 protocol_count = 1U;
315 ws, url_var, protocols, protocol_count,
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
H A Dpnacl_shim.c1527 static int32_t Pnacl_M18_PPB_WebSocket_Connect(PP_Resource web_socket, struct PP_Var* url, const struct PP_Var protocols[], uint32_t protocol_count, struct PP_CompletionCallback* callback) { argument
1529 return iface->Connect(web_socket, *url, protocols, protocol_count, *callback);
4428 .Connect = (int32_t (*)(PP_Resource web_socket, struct PP_Var url, const struct PP_Var protocols[], uint32_t protocol_count, struct PP_CompletionCallback callback))&Pnacl_M18_PPB_WebSocket_Connect,

Completed in 413 milliseconds