Searched defs:reply (Results 1 - 25 of 193) sorted by relevance

12345678

/external/robolectric/src/main/java/android/os/
H A DShadowBinderBridge.java13 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) throws RemoteException { argument
14 return realBinder.onTransact(code, data, reply, flags);
/external/valgrind/main/coregrind/m_mach/
H A Dmach_basics.c54 static mach_port_t reply = 0; variable
58 if (!reply) reply = mach_reply_port();
59 return reply;
80 reply = 0;
/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Dusbsignhandler.js136 var reply = {
141 this.cb_(reply, 'USB');
154 var reply = {
158 this.cb_(reply);
H A Dusbenrollhandler.js314 var reply = {
318 this.cb_(reply);
331 var reply = {
337 this.cb_(reply);
/external/chromium_org/base/
H A Dtask_runner_util.h31 // |reply| must be non-null in PostTaskAndReplyWithResult() below after
59 const Callback<void(ReplyArgType)>& reply) {
65 base::Bind(&internal::ReplyAdapter<TaskReturnType, ReplyArgType>, reply,
55 PostTaskAndReplyWithResult( TaskRunner* task_runner, const tracked_objects::Location& from_here, const Callback<TaskReturnType(void)>& task, const Callback<void(ReplyArgType)>& reply) argument
H A Dtask_runner.cc51 const Closure& reply) {
53 from_here, task, reply);
48 PostTaskAndReply( const tracked_objects::Location& from_here, const Closure& task, const Closure& reply) argument
/external/chromium_org/base/threading/
H A Dpost_task_and_reply_impl.cc17 // ensures that both the |task| and |reply| Closures are deleted on this same
18 // thread. Also, |task| is guaranteed to be deleted before |reply| is run or
22 // available, the the |task| and |reply| Closures are leaked. Leaking is
28 const Closure& task, const Closure& reply)
32 reply_ = reply;
77 const Closure& reply) {
79 new PostTaskAndReplyRelay(from_here, task, reply);
27 PostTaskAndReplyRelay(const tracked_objects::Location& from_here, const Closure& task, const Closure& reply) argument
74 PostTaskAndReply( const tracked_objects::Location& from_here, const Closure& task, const Closure& reply) argument
H A Dworker_pool.cc106 const Closure& reply,
115 from_here, task, reply);
104 PostTaskAndReply(const tracked_objects::Location& from_here, const Closure& task, const Closure& reply, bool task_is_slow) argument
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dwrite_on_cache_file.cc20 // Runs |close_callback| and |reply|.
22 const FileOperationCallback& reply,
26 DCHECK(!reply.is_null());
27 reply.Run(error);
35 const FileOperationCallback& reply,
44 base::Bind(&RunCloseCallbackAndReplyTask, close_callback, reply, error));
61 const FileOperationCallback& reply) {
65 DCHECK(!reply.is_null());
71 base::Bind(&WriteOnCacheFileAfterOpenFile, path, callback, reply));
21 RunCloseCallbackAndReplyTask(const base::Closure& close_callback, const FileOperationCallback& reply, FileError error) argument
32 WriteOnCacheFileAfterOpenFile( const base::FilePath& drive_path, const WriteOnCacheFileCallback& file_io_task_callback, const FileOperationCallback& reply, FileError error, const base::FilePath& local_cache_path, const base::Closure& close_callback) argument
57 WriteOnCacheFileAndReply(FileSystemInterface* file_system, const base::FilePath& path, const std::string& mime_type, const WriteOnCacheFileCallback& callback, const FileOperationCallback& reply) argument
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DShadowBinderTest.java21 Parcel reply = Parcel.obtain();
22 assertTrue(testBinder.transact(2, data, reply, 3));
25 assertThat(testBinder.reply, sameInstance(reply));
32 Parcel reply; field in class:ShadowBinderTest.TestBinder
36 protected boolean onTransact(int code, Parcel data, Parcel reply, int flags) throws RemoteException { argument
39 this.reply = reply;
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_old_handlers_wps.c71 DBusMessage *reply = NULL; local
103 reply = dbus_message_new_method_return(message);
104 if (reply == NULL)
108 dbus_message_append_args(reply, DBUS_TYPE_STRING, &pin,
113 dbus_message_append_args(reply, DBUS_TYPE_STRING, &npin,
116 return reply;
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Duserdatarequest.cpp81 char reply[10]; local
82 size_t reply_len = sizeof(reply);
92 wpagui->ctrlRequest(cmd.toAscii().constData(), reply, &reply_len);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
H A DSuperClassTest.java48 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
49 checkReplyPacket(reply, "ClassType.Superclass command", errorExpected);
50 return reply;
53 private void asserSuperClassReplyIsValid(ReplyPacket reply, String expectedSignature) { argument
54 assertTrue(reply.getErrorCode() == JDWPConstants.Error.NONE);
55 long superClassID = reply.getNextValueAsClassID();
89 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
91 asserSuperClassReplyIsValid(reply, "Ljava/lang/Object;");
99 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE);
101 asserSuperClassReplyIsValid(reply, "Ljav
[all...]
/external/chromium_org/base/task/
H A Dcancelable_task_tracker.h10 // Each cancelable task can be associated with a reply (also a Closure). After
11 // the task is run on the TaskRunner, |reply| will be posted back to
32 // 2. Both task and reply are deleted on the originating thread.
76 const base::Closure& reply);
83 const base::Callback<void(ReplyArgType)>& reply) {
92 reply,
107 // After calling this function, |task| and |reply| will not run. If the
108 // cancelation happens when |task| is running or has finished running, |reply|
109 // will not run. If |reply| is running or has finished running, cancellation
79 PostTaskAndReplyWithResult( base::TaskRunner* task_runner, const tracked_objects::Location& from_here, const base::Callback<TaskReturnType(void)>& task, const base::Callback<void(ReplyArgType)>& reply) argument
/external/chromium_org/sandbox/mac/
H A Dxpc_message_server_unittest.cc106 xpc_object_t reply; member in namespace:sandbox
107 EXPECT_EQ(0, xpc_pipe_routine(fixture.pipe(), request, &reply));
112 xpc_release(reply);
123 xpc_object_t reply; variable
124 EXPECT_EQ(0, xpc_pipe_routine(fixture.pipe(), request, &reply));
126 EXPECT_EQ(EPERM, xpc_dictionary_get_int64(reply, "error"));
129 xpc_release(reply); variable
201 IPCMessage reply = second_server->CreateReply(request);
202 xpc_dictionary_set_int64(reply.xpc, "seen_by_first",
204 xpc_dictionary_set_int64(reply
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowBinder.java21 public boolean transact(int code, Parcel data, Parcel reply, int flags) throws RemoteException { argument
22 return new ShadowBinderBridge(realObject).onTransact(code, data, reply, flags);
/external/chromium_org/chrome/browser/extensions/api/messaging/
H A Dmessage_property_provider.cc28 const GURL& source_url, const ChannelIDCallback& reply) {
32 reply.Run(std::string());
42 reply));
59 const ChannelIDCallback& reply) {
69 reply);
78 GotChannelID(original_task_runner, output, reply, status);
85 const ChannelIDCallback& reply,
87 base::Closure no_tls_channel_id_closure = base::Bind(reply, "");
104 original_task_runner->PostTask(FROM_HERE, base::Bind(reply, jwk_str));
27 GetChannelID(Profile* profile, const GURL& source_url, const ChannelIDCallback& reply) argument
55 GetChannelIDOnIOThread( scoped_refptr<base::TaskRunner> original_task_runner, scoped_refptr<net::URLRequestContextGetter> request_context_getter, const std::string& host, const ChannelIDCallback& reply) argument
82 GotChannelID( scoped_refptr<base::TaskRunner> original_task_runner, struct GetChannelIDOutput* output, const ChannelIDCallback& reply, int status) argument
/external/chromium_org/chrome/browser/history/
H A Dtop_sites_backend.cc72 void TopSitesBackend::DoEmptyRequest(const base::Closure& reply, argument
78 reply); local
/external/chromium_org/chrome/browser/media_galleries/win/
H A Dmtp_device_delegate_impl_win.h76 const base::Callback<void(base::File::Error)>& reply);
80 const base::Callback<void(base::File::Error)> reply; member in struct:MTPDeviceDelegateImplWin::PendingTaskInfo
116 // call-and-reply to a blocking pool thread. |task_info.task| runs on a
117 // blocking pool thread and |task_info.reply| runs on the IO thread.
128 // parameters in |current_snapshot_details_| by doing a call-and-reply to a
/external/chromium_org/chrome/utility/importer/
H A Dnss_decryptor.cc90 SECItem reply; local
91 reply.data = NULL;
92 reply.len = 0;
94 result = PK11SDR_DecryptWithSlot(slot, &request, &reply, NULL);
96 result = PK11SDR_Decrypt(&request, &reply, NULL);
99 plain.assign(reinterpret_cast<char*>(reply.data), reply.len);
101 SECITEM_FreeItem(&reply, PR_FALSE);
/external/chromium_org/components/nacl/renderer/
H A Dmanifest_service_channel.cc75 const std::string& key, IPC::Message* reply) {
79 weak_ptr_factory_.GetWeakPtr(), reply));
82 void ManifestServiceChannel::DidOpenResource(IPC::Message* reply, argument
103 PpapiHostMsg_OpenResource::WriteReplyParams(reply,
107 Send(reply);
74 OnOpenResource( const std::string& key, IPC::Message* reply) argument
/external/chromium_org/ipc/
H A Dipc_sync_message.cc99 Message* reply = new Message(msg->routing_id(), IPC_REPLY_ID, local
101 reply->set_reply();
105 // use the same message id, but this time reply bit is set
107 WriteSyncHeader(reply, header);
109 return reply;
/external/chromium_org/ppapi/proxy/
H A Dplugin_resource.cc47 // Grab the callback for the reply sequence number and run it with |msg|.
62 // reply messages from the host side and remove them. However, it is possible
125 // The browser then uses that routing ID when sending the reply so it will be
141 IPC::Message* reply,
149 params, msg, reply_params, reply));
138 GenericSyncCall( Destination dest, const IPC::Message& msg, IPC::Message* reply, ResourceMessageReplyParams* reply_params) argument
H A Dppb_flash_message_loop_proxy.cc107 // message reply after the handler returns. However, in this case, the
132 IPC::Message* reply) {
138 base::Passed(scoped_ptr<IPC::Message>(reply)));
130 OnMsgRun( const HostResource& flash_message_loop, IPC::Message* reply) argument
H A Dtalk_resource_unittest.cc53 const IPC::Message& reply,
62 PluginMessageFilter::DispatchResourceReplyForTest(reply_params, reply);
51 SendReply( uint32_t id, const IPC::Message& reply, int32_t result) argument

Completed in 5446 milliseconds

12345678