HomeSort by relevance Sort by last modified time
    Searched defs:reply (Results 126 - 150 of 352) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium/chrome/browser/
shell_integration_linux.cc 271 std::string reply; local
272 if (!base::GetAppOutput(CommandLine(argv), &reply)) {
277 // Allow any reply that starts with "yes".
278 return (reply.find("yes") == 0) ? IS_DEFAULT_BROWSER : NOT_DEFAULT_BROWSER;
  /external/chromium/third_party/libevent/
evrpc.h 41 * EVRPC_HEADER(SendCommand, Request, Reply);
46 * server needs to fill in the Reply structure.
47 * Reply is the name of a structure generated by event_rpcgen.py. It
57 * EVRPC_REGISTER(base, SendCommand, Request, Reply, FunctionCB, arg);
60 * is invokved. The callback needs to fill in the reply structure.
64 * To send the reply, call EVRPC_REQUEST_DONE(rpc);
89 /* creates a new reply structure */
92 /* creates a new reply structure */
95 /* verifies that the reply is valid */
98 /* marshals the reply into a buffer *
124 void *reply; member in struct:evrpc_req_generic
360 void *reply; member in struct:evrpc_request_wrapper
    [all...]
  /external/chromium_org/cc/resources/
worker_pool_unittest.cc 19 const base::Closure& reply)
21 reply_(reply) {
47 const base::Closure& reply,
51 reply(reply),
58 base::Closure reply; member in struct:cc::__anon6547::FakeWorkerPool::Task
86 new FakeWorkerPoolTaskImpl(it->callback, it->reply));
  /external/chromium_org/chrome/browser/
upgrade_detector_impl.cc 251 std::string reply; local
252 if (!base::GetAppOutput(command_line, &reply)) {
257 installed_version = Version(reply);
  /external/chromium_org/content/child/npapi/
np_channel_base.cc 203 // ourself so that we can send the reply and decrement back in_dispatch_.
216 // hang waiting for a reply.
217 IPC::Message* reply = IPC::SyncMessage::GenerateReply(&message); local
218 reply->set_reply_error();
219 Send(reply);
  /external/chromium_org/ipc/
ipc_message_utils.h 764 inline void ConnectMessageAndReply(const Message* msg, Message* reply) {
768 // with the outgoing reply message when it's sent.
772 reply->set_sync_log_data(data);
782 inline void ConnectMessageAndReply(const Message* msg, Message* reply) {}
818 Message* reply = SyncMessage::GenerateReply(msg); local
822 WriteParam(reply, reply_params);
826 reply->set_reply_error();
828 sender->Send(reply);
837 Message* reply = SyncMessage::GenerateReply(msg); local
839 Tuple1<Message&> t = MakeRefTuple(*reply);
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/api/input_event/
input_event.cc 119 std::string reply = local
122 PostMessage(pp::Var(reply));
  /external/chromium_org/net/disk_cache/simple/
simple_index.cc 157 base::Closure reply = base::Bind( local
161 index_file_->LoadIndexEntries(cache_mtime, reply, load_result);
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/fault_injection/
fault_pm_nameservice_test.cc 202 // reply string -- essentially treating this as a string-based RPC.
216 std::string reply; local
230 reply = sb.ToString();
231 len = strlen(reply.c_str());
232 fprintf(stderr, "posting reply len %d\n", len);
233 // fprintf(stderr, "posting reply \"%s\".\n", sb.ToString().c_str());
234 fprintf(stderr, "posting reply \"");
236 write(2, reply.c_str(), len);
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/nameservice/
pm_nameservice_test.cc 202 // reply string -- essentially treating this as a string-based RPC.
216 std::string reply; local
230 reply = sb.ToString();
231 len = strlen(reply.c_str());
232 fprintf(stderr, "posting reply len %d\n", len);
233 // fprintf(stderr, "posting reply \"%s\".\n", sb.ToString().c_str());
234 fprintf(stderr, "posting reply \"");
236 write(2, reply.c_str(), len);
  /external/chromium_org/sandbox/linux/suid/
sandbox.c 139 const char reply = kMsgChrootSuccessful; local
141 bytes = write(sv[0], &reply, 1);
145 FatalError("Writing reply");
  /external/chromium_org/third_party/libevent/
evrpc.h 41 * EVRPC_HEADER(SendCommand, Request, Reply);
46 * server needs to fill in the Reply structure.
47 * Reply is the name of a structure generated by event_rpcgen.py. It
57 * EVRPC_REGISTER(base, SendCommand, Request, Reply, FunctionCB, arg);
60 * is invokved. The callback needs to fill in the reply structure.
64 * To send the reply, call EVRPC_REQUEST_DONE(rpc);
89 /* creates a new reply structure */
92 /* creates a new reply structure */
95 /* verifies that the reply is valid */
98 /* marshals the reply into a buffer *
124 void *reply; member in struct:evrpc_req_generic
360 void *reply; member in struct:evrpc_request_wrapper
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_winsys_dri.c 179 xcb_dri2_get_buffers_reply_t *reply; local
187 reply = vl_dri2_get_flush_reply(scrn);
188 if (!reply) {
191 reply = xcb_dri2_get_buffers_reply(scrn->conn, cookie, NULL);
193 if (!reply)
196 buffers = xcb_dri2_get_buffers_buffers(reply);
198 free(reply);
202 for (i = 0; i < reply->count; ++i) {
209 if (i == reply->count) {
210 free(reply);
261 xcb_dri2_get_msc_reply_t *reply; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/x11/
glxinit.c 140 xGLXSingleReply reply; local
163 _XReply(dpy, (xReply *) & reply, 0, False);
165 length = reply.length * 4;
166 numbytes = reply.size;
241 xGLXQueryVersionReply reply; local
250 _XReply(dpy, (xReply *) & reply, 0, False);
254 if (reply.majorVersion != GLX_MAJOR_VERSION) {
261 *major = reply.majorVersion;
262 *minor = min(reply.minorVersion, GLX_MINOR_VERSION);
310 ** of the reply. They are in pairs of property typ
520 xGLXGetFBConfigsReply reply; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
glx_pbuffer.c 267 * capture the reply rather than always calling Xmalloc.
274 xGLXGetDrawableAttributesReply reply; local
318 _XReply(dpy, (xReply *) & reply, 0, False);
320 if (reply.type == X_Error) {
326 length = reply.length;
328 num_attributes = (use_glx_1_3) ? reply.numAttribs : length / 2;
glxext.c 290 xcb_glx_query_version_reply_t *reply = xcb_glx_query_version_reply(c, local
297 if (!reply)
300 if (reply->major_version != GLX_MAJOR_VERSION) {
301 free(reply);
304 *major = reply->major_version;
305 *minor = min(reply->minor_version, GLX_MINOR_VERSION);
306 free(reply);
310 xGLXQueryVersionReply reply;
319 _XReply(dpy, (xReply *) & reply, 0, False);
323 if (reply.majorVersion != GLX_MAJOR_VERSION)
654 xGLXGetVisualConfigsReply reply; local
684 xGLXGetFBConfigsReply reply; local
    [all...]
single2.c 131 xGLXGetErrorReply reply; local
143 retval = reply.error;
323 xGLXSingleReply reply; local
374 xGLXSingleReply reply; local
425 xGLXSingleReply reply; local
476 xGLXSingleReply reply; local
579 xGLXRenderModeReply reply; local
590 if (reply.newMode != mode) {
618 xGLXSingleReply reply; local
799 xGLXSingleReply reply; local
893 xcb_glx_are_textures_resident_reply_t *reply = local
    [all...]
  /external/ipsec-tools/src/racoon/
privsep.c 288 struct privsep_com_msg *reply; local
319 /* Prepare the reply buffer */
320 if ((reply = racoon_malloc(sizeof(*reply))) == NULL) {
322 "Cannot allocate reply buffer: %s\n",
326 bzero(reply, sizeof(*reply));
327 reply->hdr.ac_cmd = combuf->hdr.ac_cmd;
328 reply->hdr.ac_len = sizeof(*reply);
    [all...]
  /external/libppp/src/
tty.c 257 struct ng_mesg *reply; local
272 reply = (struct ng_mesg *)rbuf;
273 info = (struct nodeinfo *)reply->data;
352 if (NgRecvMsg(cs, reply, sizeof rbuf, NULL) < 0) {
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_winsys_dri.c 179 xcb_dri2_get_buffers_reply_t *reply; local
187 reply = vl_dri2_get_flush_reply(scrn);
188 if (!reply) {
191 reply = xcb_dri2_get_buffers_reply(scrn->conn, cookie, NULL);
193 if (!reply)
196 buffers = xcb_dri2_get_buffers_buffers(reply);
198 free(reply);
202 for (i = 0; i < reply->count; ++i) {
209 if (i == reply->count) {
210 free(reply);
261 xcb_dri2_get_msc_reply_t *reply; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/x11/
glxinit.c 140 xGLXSingleReply reply; local
163 _XReply(dpy, (xReply *) & reply, 0, False);
165 length = reply.length * 4;
166 numbytes = reply.size;
241 xGLXQueryVersionReply reply; local
250 _XReply(dpy, (xReply *) & reply, 0, False);
254 if (reply.majorVersion != GLX_MAJOR_VERSION) {
261 *major = reply.majorVersion;
262 *minor = min(reply.minorVersion, GLX_MINOR_VERSION);
310 ** of the reply. They are in pairs of property typ
520 xGLXGetFBConfigsReply reply; local
    [all...]
  /external/mesa3d/src/glx/
glx_pbuffer.c 267 * capture the reply rather than always calling Xmalloc.
274 xGLXGetDrawableAttributesReply reply; local
318 _XReply(dpy, (xReply *) & reply, 0, False);
320 if (reply.type == X_Error) {
326 length = reply.length;
328 num_attributes = (use_glx_1_3) ? reply.numAttribs : length / 2;
glxext.c 290 xcb_glx_query_version_reply_t *reply = xcb_glx_query_version_reply(c, local
297 if (!reply)
300 if (reply->major_version != GLX_MAJOR_VERSION) {
301 free(reply);
304 *major = reply->major_version;
305 *minor = min(reply->minor_version, GLX_MINOR_VERSION);
306 free(reply);
310 xGLXQueryVersionReply reply;
319 _XReply(dpy, (xReply *) & reply, 0, False);
323 if (reply.majorVersion != GLX_MAJOR_VERSION)
654 xGLXGetVisualConfigsReply reply; local
684 xGLXGetFBConfigsReply reply; local
    [all...]
single2.c 131 xGLXGetErrorReply reply; local
143 retval = reply.error;
323 xGLXSingleReply reply; local
374 xGLXSingleReply reply; local
425 xGLXSingleReply reply; local
476 xGLXSingleReply reply; local
579 xGLXRenderModeReply reply; local
590 if (reply.newMode != mode) {
618 xGLXSingleReply reply; local
799 xGLXSingleReply reply; local
893 xcb_glx_are_textures_resident_reply_t *reply = local
    [all...]
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/mockspdyserver/
MockSpdyServer.java 256 stream.reply(spdyHeaders, body.length > 0);

Completed in 961 milliseconds

1 2 3 4 56 7 8 91011>>