Home
last modified time | relevance | path

Searched refs:response_message (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/net/websockets/
Dwebsocket_handshake_handler.cc137 std::string* response_message) { in AppendHeader() argument
145 response_message->reserve(response_message->size() + extra_size); in AppendHeader()
146 response_message->append(header.begin(), header.end()); in AppendHeader()
147 response_message->append(kColonSpace, kColonSpace + kColonSpaceSize); in AppendHeader()
148 response_message->append(value.begin(), value.end()); in AppendHeader()
149 response_message->append(kCrNl, kCrNl + kCrNlSize); in AppendHeader()
364 std::string response_message; in ParseResponseInfo() local
365 response_message = response_info.headers->GetStatusLine(); in ParseResponseInfo()
366 response_message += "\r\n"; in ParseResponseInfo()
370 &response_message); in ParseResponseInfo()
[all …]
/external/chromium_org/dbus/
Dobject_proxy.cc82 DBusMessage* response_message = in CallMethodAndBlockWithErrorDetails() local
86 response_message ? 1 : 0, in CallMethodAndBlockWithErrorDetails()
92 if (!response_message) { in CallMethodAndBlockWithErrorDetails()
103 return Response::FromRawMessage(response_message); in CallMethodAndBlockWithErrorDetails()
134 DBusMessage* response_message = NULL; in CallMethodWithErrorCallback() local
140 response_message); in CallMethodWithErrorCallback()
251 DBusMessage* response_message = NULL; in StartAsyncMethodCall() local
257 response_message); in StartAsyncMethodCall()
293 DBusMessage* response_message = dbus_pending_call_steal_reply(pending_call); in OnPendingCallIsComplete() local
299 response_message); in OnPendingCallIsComplete()
[all …]
Dobject_proxy.h227 DBusMessage* response_message);
Dbus.cc887 DBusMessage* response_message = in GetServiceOwnerAndBlock() local
891 if (!response_message) { in GetServiceOwnerAndBlock()
899 scoped_ptr<Response> response(Response::FromRawMessage(response_message)); in GetServiceOwnerAndBlock()
/external/chromium_org/cloud_print/gcp20/prototype/
Dcloud_print_response_parser.cc43 std::string response_message; in GetJsonDictinaryAndCheckSuccess() local
44 if (!response_dictionary->GetString("message", &response_message)) { in GetJsonDictinaryAndCheckSuccess()
48 *message = response_message; in GetJsonDictinaryAndCheckSuccess()