Searched defs:reply (Results 1 - 25 of 182) 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/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/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/chrome/browser/importer/
H A Dnss_decryptor.cc86 SECItem reply; local
87 reply.data = NULL;
88 reply.len = 0;
90 result = PK11SDR_DecryptWithSlot(slot, &request, &reply, NULL);
92 result = PK11SDR_Decrypt(&request, &reply, NULL);
95 plain.assign(reinterpret_cast<char*>(reply.data), reply.len);
97 SECITEM_FreeItem(&reply, PR_FALSE);
/external/chromium/net/base/
H A Dtest_completion_callback_unittest.cc69 Task* reply = NewRunnableMethod(this, &ExampleWorker::DoCallback); local
76 origin_loop_->PostTask(FROM_HERE, reply);
77 reply = NULL;
82 delete reply;
/external/chromium_org/base/posix/
H A Dunix_domain_socket_linux.cc117 uint8_t* reply,
121 return UnixDomainSocket::SendRecvMsgWithFlags(fd, reply, max_reply_len,
128 uint8_t* reply,
152 const ssize_t reply_len = RecvMsgWithFlags(fds[0], reply, max_reply_len,
116 SendRecvMsg(int fd, uint8_t* reply, unsigned max_reply_len, int* result_fd, const Pickle& request) argument
127 SendRecvMsgWithFlags(int fd, uint8_t* reply, unsigned max_reply_len, int recvmsg_flags, int* result_fd, const Pickle& request) argument
/external/chromium_org/chrome/browser/automation/
H A Dautomation_event_queue.cc33 void AutomationEventQueue::GetNextEvent(AutomationJSONReply* reply, argument
36 wait_automation_reply_.reset(reply);
/external/chromium_org/chrome/browser/extensions/api/messaging/
H A Dmessage_property_provider.cc28 const GURL& source_url, const DomainBoundCertCallback& reply) {
32 reply.Run(std::string());
42 reply));
59 const DomainBoundCertCallback& reply) {
69 reply);
78 GotDomainBoundCert(original_task_runner, output, reply, status);
85 const DomainBoundCertCallback& 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 GetDomainBoundCert(Profile* profile, const GURL& source_url, const DomainBoundCertCallback& reply) argument
55 GetDomainBoundCertOnIOThread( scoped_refptr<base::TaskRunner> original_task_runner, scoped_refptr<net::URLRequestContextGetter> request_context_getter, const std::string& host, const DomainBoundCertCallback& reply) argument
82 GotDomainBoundCert( scoped_refptr<base::TaskRunner> original_task_runner, struct GetDomainBoundCertOutput* output, const DomainBoundCertCallback& reply, int status) argument
/external/chromium_org/chrome/browser/history/
H A Dtop_sites_backend.cc71 void TopSitesBackend::DoEmptyRequest(const base::Closure& reply, argument
77 reply); local
/external/chromium_org/chrome/browser/media_galleries/win/
H A Dmtp_device_delegate_impl_win.h76 const base::Callback<void(base::PlatformFileError)>& reply);
80 const base::Callback<void(base::PlatformFileError)> reply; member in struct:MTPDeviceDelegateImplWin::PendingTaskInfo
109 // call-and-reply to a blocking pool thread. |task_info.task| runs on a
110 // blocking pool thread and |task_info.reply| runs on the IO thread.
121 // parameters in |current_snapshot_details_| by doing a call-and-reply to a
/external/chromium_org/chrome/browser/performance_monitor/
H A Dperformance_monitor_util.cc21 const base::Closure& reply) {
26 from_here, request, reply);
18 PostTaskToDatabaseThreadAndReply( const tracked_objects::Location& from_here, const base::Closure& request, const base::Closure& reply) argument
/external/chromium_org/chrome/utility/importer/
H A Dnss_decryptor.cc86 SECItem reply; local
87 reply.data = NULL;
88 reply.len = 0;
90 result = PK11SDR_DecryptWithSlot(slot, &request, &reply, NULL);
92 result = PK11SDR_Decrypt(&request, &reply, NULL);
95 plain.assign(reinterpret_cast<char*>(reply.data), reply.len);
97 SECITEM_FreeItem(&reply, PR_FALSE);
/external/chromium_org/content/public/browser/
H A Dbrowser_message_filter.cc172 IPC::Message* reply = IPC::SyncMessage::GenerateReply(&message); local
173 reply->set_reply_error();
174 sender->Send(reply);
/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/net/quic/
H A Dquic_crypto_server_stream.cc72 CryptoHandshakeMessage reply; local
74 message, result, &reply, &error_details);
81 if (reply.tag() != kSHLO) {
82 SendHandshakeMessage(reply);
95 config->ToHandshakeMessage(&reply);
111 SendHandshakeMessage(reply);
160 CryptoHandshakeMessage* reply,
170 &crypto_negotiated_params_, reply, error_details);
157 ProcessClientHello( const CryptoHandshakeMessage& message, const ValidateClientHelloResultCallback::Result& result, CryptoHandshakeMessage* reply, string* error_details) argument
/external/chromium_org/ppapi/native_client/tests/nacl_browser/manifest_file/
H A Dirt_manifest_file_test.cc97 pp::Var reply = pp::Var(str); local
98 PostMessage(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

Completed in 1298 milliseconds

12345678