Searched refs:reply (Results 26 - 50 of 344) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_old_handlers.c38 DBusMessage *reply; local
40 reply = dbus_message_new_error(message, WPAS_ERROR_INVALID_OPTS,
44 dbus_message_append_args(reply, DBUS_TYPE_STRING, &arg,
47 return reply;
52 * wpas_dbus_new_success_reply - Return a new success reply message
53 * @message: Pointer to incoming dbus message this reply refers to
57 * Convenience function to create and return a success reply message
61 DBusMessage *reply; local
64 reply = dbus_message_new_method_return(message);
65 dbus_message_append_args(reply, DBUS_TYPE_UINT3
90 DBusMessage *reply = NULL; local
211 DBusMessage *reply = NULL; local
253 DBusMessage *reply = NULL; local
295 DBusMessage *reply = NULL; local
353 DBusMessage *reply; local
410 DBusMessage *reply; local
504 DBusMessage *reply = NULL; local
792 DBusMessage *reply = NULL; local
834 DBusMessage *reply = NULL; local
922 DBusMessage *reply = NULL; local
1076 DBusMessage *reply = NULL; local
1166 DBusMessage *reply = NULL; local
1274 DBusMessage *reply = NULL; local
1299 DBusMessage *reply = NULL; local
1329 DBusMessage *reply = NULL; local
[all...]
H A Ddbus_old.c134 * Returns: a reply dbus message, or a dbus error message
142 DBusMessage *reply = NULL; local
151 reply = wpas_dbus_iface_set_network(message, wpa_s, ssid);
153 reply = wpas_dbus_iface_enable_network(message, wpa_s, ssid);
155 reply = wpas_dbus_iface_disable_network(message, wpa_s, ssid);
157 return reply;
166 * Returns: a reply dbus message, or a dbus error message
213 DBusMessage *reply = NULL; local
222 reply = wpas_dbus_new_invalid_iface_error(message);
231 reply
323 DBusMessage *reply = NULL; local
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
H A DClassPathsTest.java54 * <BR>&nbsp;&nbsp; - there are no extra data in the reply packet;
64 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
65 checkReplyPacket(reply, "VirtualMachine::ClassPaths command");
67 String baseDir = reply.getNextValueAsString();
72 int classpaths = reply.getNextValueAsInt();
75 String path = reply.getNextValueAsString();
82 int bootclasspaths = reply.getNextValueAsInt();
86 String path = reply.getNextValueAsString();
91 assertAllDataRead(reply);
H A DCreateStringTest.java62 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
63 checkReplyPacket(reply, "VirtualMachine::CreateString command");
65 long stringID = reply.getNextValueAsStringID();
73 reply = debuggeeWrapper.vmMirror.performCommand(packet);
74 checkReplyPacket(reply, "StringReference::Value command");
76 String value = reply.getNextValueAsString();
H A DVersionTest.java61 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
63 String description = reply.getNextValueAsString();
64 int jdwpMajor = reply.getNextValueAsInt();
65 int jdwpMinor = reply.getNextValueAsInt();
66 String vmVersion = reply.getNextValueAsString();
67 String vmName = reply.getNextValueAsString();
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
H A DLineTableTest.java58 ReplyPacket reply = getLineTable(classID, methodsInfo[i].getMethodID());
60 long start = reply.getNextValueAsLong();
62 long end = reply.getNextValueAsLong();
65 int lines = reply.getNextValueAsInt();
69 long lineCodeIndex = reply.getNextValueAsLong();
71 int lineNumber = reply.getNextValueAsInt();
H A DJDWPMethodTestCase.java92 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
94 assertTrue(reply.getErrorCode() == JDWPConstants.Error.NONE);
95 int declared = reply.getNextValueAsInt();
100 reply.getNextValueAsMethodID(),
101 reply.getNextValueAsString(),
102 reply.getNextValueAsString(),
103 reply.getNextValueAsInt()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
H A DParentTest.java69 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
70 checkReplyPacket(reply, "ThreadReference::ThreadGroup command");
72 groupID = reply.getNextValueAsThreadGroupID();
79 reply = debuggeeWrapper.vmMirror.performCommand(packet);
80 checkReplyPacket(reply, "ThreadGroupReference::Parent command");
82 groupID = reply.getNextValueAsThreadGroupID();
H A DChildrenTest.java73 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
74 checkReplyPacket(reply, "ThreadReference.ThreadGroup command");
76 groupID = reply.getNextValueAsThreadGroupID();
84 reply = debuggeeWrapper.vmMirror.performCommand(packet);
85 checkReplyPacket(reply, "ThreadGroupReference.Children command");
91 int childThreads = reply.getNextValueAsInt();
97 long childThreadID = reply.getNextValueAsThreadID();
113 int childGroups = reply.getNextValueAsInt();
120 groupID = reply.getNextValueAsThreadGroupID();
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
H A DJDWPTestCase.java171 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command);
172 checkReplyPacket(reply, "ObjectReference::ReferenceType command");
174 reply.getNextValueAsByte();
175 long objectRefTypeID = reply.getNextValueAsReferenceTypeID();
193 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command);
194 checkReplyPacket(reply, "ReferenceType::Methods command");
195 int methods = reply.getNextValueAsInt();
197 long methodID = reply.getNextValueAsMethodID();
198 String name = reply.getNextValueAsString(); // method name
199 reply
559 checkReplyPacket(ReplyPacket reply, String message, int errorCodeExpected) argument
573 checkReplyPacket(ReplyPacket reply, String message) argument
588 checkReplyPacket(ReplyPacket reply, String message, int[] expected) argument
605 checkReplyPacketWithoutFail(ReplyPacket reply, String message) argument
627 checkReplyPacket(ReplyPacket reply, String message, int[] expected, boolean failSign) argument
737 assertAllDataRead(Packet reply) argument
[all...]
/external/chromium_org/chrome/browser/renderer_host/pepper/
H A Dpepper_talk_host.cc35 ppapi::host::ReplyMessageContext reply) {
37 reply.params.set_result(0);
42 return reply; // RFH destroyed while task was pending.
65 return reply;
73 reply.params.set_result(static_cast<int32_t>(
80 return reply;
94 ppapi::host::ReplyMessageContext reply) {
99 reply.params.set_result(PP_ERROR_FAILED);
100 return reply; // RFH destroyed while task was pending.
109 reply
31 GetPermissionOnUIThread( PP_TalkPermission permission, int render_process_id, int render_frame_id, ppapi::host::ReplyMessageContext reply) argument
90 StartRemotingOnUIThread( const base::Closure& stop_callback, int render_process_id, int render_frame_id, ppapi::host::ReplyMessageContext reply) argument
128 StopRemotingOnUIThreadWithResult( ppapi::host::ReplyMessageContext reply) argument
234 OnRequestPermissionCompleted( ppapi::host::ReplyMessageContext reply) argument
240 OnStartRemotingCompleted( ppapi::host::ReplyMessageContext reply) argument
250 OnStopRemotingCompleted( ppapi::host::ReplyMessageContext reply) argument
[all...]
/external/chromium_org/sandbox/mac/
H A Dmach_message_server.cc55 // Allocate the message request and reply buffers.
69 MACH_LOG(ERROR, kr) << "Failed to allocate reply buffer.";
102 bool MachMessageServer::SendReply(mach_msg_header_t* reply) { argument
103 kern_return_t kr = mach_msg(reply, MACH_SEND_MSG, reply->msgh_size, 0,
106 << "Unable to send intercepted reply message.";
125 void MachMessageServer::RejectMessage(mach_msg_header_t* reply, argument
127 mig_reply_error_t* error_reply = reinterpret_cast<mig_reply_error_t*>(reply);
143 mach_msg_header_t* reply = local
148 bzero(reply, buffer_size
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
H A DInvokeMethodTest.java71 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
72 checkReplyPacket(reply, "VirtualMachine::ClassesBySignature command");
74 int classes = reply.getNextValueAsInt();
77 byte refTypeTag = reply.getNextValueAsByte();
78 long typeID = reply.getNextValueAsReferenceTypeID();
79 int status = reply.getNextValueAsInt();
80 assertAllDataRead(reply);
95 reply = debuggeeWrapper.vmMirror.performCommand(packet);
96 checkReplyPacket(reply, "ReferenceType::Methods command");
98 int declared = reply
[all...]
H A DJDWPClassTypeTestCase.java121 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
122 assertTrue(reply.getErrorCode() == JDWPConstants.Error.NONE);
124 int declared = reply.getNextValueAsInt();
128 new FieldInfo(reply.getNextValueAsFieldID(),
129 reply.getNextValueAsString(),
130 reply.getNextValueAsString(),
131 reply.getNextValueAsInt());
H A DInvokeMethod003Test.java65 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
66 checkReplyPacket(reply, "EventRequest::Set command");
68 int requestID = reply.getNextValueAsInt();
70 assertAllDataRead(reply);
101 reply = debuggeeWrapper.vmMirror.performCommand(packet);
102 checkReplyPacket(reply, "EventRequest::Clear command");
103 assertAllDataRead(reply);
121 reply = debuggeeWrapper.vmMirror.performCommand(packet);
122 checkReplyPacket(reply, "ClassType::InvokeMethod command");
124 Value returnValue = reply
[all...]
H A DNewInstance002Test.java66 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
67 checkReplyPacket(reply, "EventRequest::Set command");
69 int requestID = reply.getNextValueAsInt();
71 assertAllDataRead(reply);
102 reply = debuggeeWrapper.vmMirror.performCommand(packet);
103 checkReplyPacket(reply, "EventRequest::Clear command");
104 assertAllDataRead(reply);
127 reply = debuggeeWrapper.vmMirror.performCommand(packet);
128 checkReplyPacket(reply, "ClassType::NewInstance command");
130 TaggedObject newObject = reply
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
H A DListenConnectorTest.java69 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
70 checkReplyPacket(reply, "VirtualMachine::Version command");
72 String description = reply.getNextValueAsString();
73 int jdwpMajor = reply.getNextValueAsInt();
74 int jdwpMinor = reply.getNextValueAsInt();
75 String vmVersion = reply.getNextValueAsString();
76 String vmName = reply.getNextValueAsString();
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
H A DSuspendCountTest.java142 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
143 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.SuspendCount command") ) {
146 int suspendCount = reply.getNextValueAsInt();
164 reply = debuggeeWrapper.vmMirror.performCommand(packet);
165 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.Suspend command") ) {
179 reply = debuggeeWrapper.vmMirror.performCommand(packet);
180 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.SuspendCount command") ) {
183 int suspendCount = reply.getNextValueAsInt();
197 reply = debuggeeWrapper.vmMirror.performCommand(packet);
198 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReferenc
[all...]
H A DResumeTest.java132 ReplyPacket reply = null;
151 reply = debuggeeWrapper.vmMirror.performCommand(packet);
152 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.Resume command") ) {
171 reply = debuggeeWrapper.vmMirror.performCommand(packet);
172 int errorCode = reply.getErrorCode();
191 reply = debuggeeWrapper.vmMirror.performCommand(packet);
192 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.Status command") ) {
197 int threadStatus = reply.getNextValueAsInt();
198 int suspendStatus = reply.getNextValueAsInt();
220 reply
[all...]
/external/chromium_org/components/nacl/renderer/
H A Dmanifest_service_channel.cc71 const std::string& key, IPC::Message* reply) {
78 weak_ptr_factory_.GetWeakPtr(), reply));
81 reply, ppapi::proxy::SerializedHandle());
82 Send(reply);
88 IPC::Message* reply, const base::PlatformFile& platform_file) {
91 reply,
95 Send(reply);
70 OnOpenResource( const std::string& key, IPC::Message* reply) argument
87 DidOpenResource( IPC::Message* reply, const base::PlatformFile& platform_file) argument
/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/content/common/
H A Dfont_config_ipc_linux.cc70 Pickle reply(reinterpret_cast<char*>(reply_buf), r);
71 PickleIterator iter(reply);
73 if (!reply.ReadBool(&iter, &result))
81 if (!skia::ReadSkString(reply, &iter, &reply_family) ||
82 !skia::ReadSkFontIdentity(reply, &iter, &reply_identity) ||
83 !reply.ReadUInt32(&iter, &reply_style)) {
112 Pickle reply(reinterpret_cast<char*>(reply_buf), r);
114 PickleIterator iter(reply);
115 if (!reply.ReadBool(&iter, &result) ||
/external/chromium_org/chrome/browser/nacl_host/test/
H A Dgdb_rsp.py46 reply = ''
51 'incomplete reply message: %r' % reply)
52 reply += data
55 match = re.match('\+\$([^#]*)#([0-9a-fA-F]{2})$', reply)
57 raise AssertionError('Unexpected reply message: %r' % reply)
68 # Send an rsp message, but don't wait for or expect a reply.
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dindirect_vertex_program.c181 GLuint index, GLenum pname, xReply * reply)
191 (void) _XReply(dpy, reply, 0, False);
201 xGLXSingleReply reply; local
204 get_vertex_attrib(gc, 1303, index, pname, (xReply *) & reply);
206 if (reply.size != 0) {
214 if (reply.size == 1) {
215 *params = (GLint) reply.pad3;
218 _XRead(dpy, (void *) params, 4 * reply.size);
235 xGLXSingleReply reply; local
238 get_vertex_attrib(gc, 1302, index, pname, (xReply *) & reply);
180 get_vertex_attrib(struct glx_context * gc, unsigned vop, GLuint index, GLenum pname, xReply * reply) argument
269 xGLXSingleReply reply; local
[all...]
/external/mesa3d/src/glx/
H A Dindirect_vertex_program.c181 GLuint index, GLenum pname, xReply * reply)
191 (void) _XReply(dpy, reply, 0, False);
201 xGLXSingleReply reply; local
204 get_vertex_attrib(gc, 1303, index, pname, (xReply *) & reply);
206 if (reply.size != 0) {
214 if (reply.size == 1) {
215 *params = (GLint) reply.pad3;
218 _XRead(dpy, (void *) params, 4 * reply.size);
235 xGLXSingleReply reply; local
238 get_vertex_attrib(gc, 1302, index, pname, (xReply *) & reply);
180 get_vertex_attrib(struct glx_context * gc, unsigned vop, GLuint index, GLenum pname, xReply * reply) argument
269 xGLXSingleReply reply; local
[all...]

Completed in 535 milliseconds

1234567891011>>