Searched refs:reply (Results 1 - 25 of 355) sorted by relevance

1234567891011>>

/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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
H A DNewInstanceTest.java69 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
70 checkReplyPacket(reply, "VirtualMachine::ClassesBySignature command");
72 int classes = reply.getNextValueAsInt();
74 byte refTypeTag = reply.getNextValueAsByte();
75 long typeID = reply.getNextValueAsReferenceTypeID();
76 int status = reply.getNextValueAsInt();
81 assertAllDataRead(reply);
91 reply = debuggeeWrapper.vmMirror.performCommand(packet);
92 checkReplyPacket(reply, "ReferenceType::Methods command");
94 int declared = reply
[all...]
H A DInvokeMethod002Test.java64 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
65 checkReplyPacket(reply, "VirtualMachine::ClassesBySignature command");
67 int classes = reply.getNextValueAsInt();
70 byte refTypeTag = reply.getNextValueAsByte();
71 long classID = reply.getNextValueAsReferenceTypeID();
72 int status = reply.getNextValueAsInt();
73 assertAllDataRead(reply);
89 reply = debuggeeWrapper.vmMirror.performCommand(packet);
90 checkReplyPacket(reply, "ReferenceType::Methods command");
92 int declared = reply
[all...]
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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
H A DLengthTest.java63 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
64 checkReplyPacket(reply, "ReferenceType::Fields command");
66 int declared = reply.getNextValueAsInt();
68 long fieldID = reply.getNextValueAsFieldID();
69 String fieldName = reply.getNextValueAsString();
70 reply.getNextValueAsString();
71 reply.getNextValueAsInt();
98 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
99 checkReplyPacket(reply, "ReferenceType::GetValues command");
101 int values = reply
[all...]
H A DSetValuesTest.java61 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
62 checkReplyPacket(reply, "ReferenceType::Fields command");
64 int declared = reply.getNextValueAsInt();
66 long fieldID = reply.getNextValueAsFieldID();
67 String name = reply.getNextValueAsString();
68 reply.getNextValueAsString();
69 reply.getNextValueAsInt();
107 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
108 checkReplyPacket(reply, "ReferenceType::GetValues command");
110 assertEquals("GetValuesCommand returned invalid number of values,", 1, reply
[all...]
/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/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/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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayType/
H A DNewInstanceTest.java75 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
76 checkReplyPacket(reply, "VirtualMachine::ClassesBySignature command");
78 int classes = reply.getNextValueAsInt();
84 byte refInitTypeTag = reply.getNextValueAsByte();
85 long typeArrayID = reply.getNextValueAsReferenceTypeID();
86 int status = reply.getNextValueAsInt();
103 reply = debuggeeWrapper.vmMirror.performCommand(packet);
104 checkReplyPacket(reply, "ArrayType::NewInstance command");
106 TaggedObject newArray = reply.getNextValueAsTaggedObject();
107 assertAllDataRead(reply);
[all...]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dnetworkconfig.cpp186 char reply[10], cmd[256]; local
224 memset(reply, 0, sizeof(reply));
225 reply_len = sizeof(reply) - 1;
228 wpagui->ctrlRequest("ADD_NETWORK", reply, &reply_len);
229 if (reply[0] == 'F') {
236 id = atoi(reply);
404 reply_len = sizeof(reply);
405 wpagui->ctrlRequest(cmd, reply, &reply_len);
406 if (strncmp(reply, "O
429 char reply[10], cmd[256]; local
495 key_value_isset(const char *reply, size_t reply_len) argument
508 char reply[1024], cmd[256], *pos; local
791 char reply[10], cmd[256]; local
828 char reply[256]; local
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
H A DVariableTableWithGenericTest.java66 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
67 checkReplyPacket(reply, "Method::VariableTableWithGeneric command");
69 int argCnt = reply.getNextValueAsInt();
71 int slots = reply.getNextValueAsInt();
74 long codeIndex = reply.getNextValueAsLong();
76 String name = reply.getNextValueAsString();
78 String signature = reply.getNextValueAsString();
80 String genericSignature = reply.getNextValueAsString();
82 int length = reply.getNextValueAsInt();
84 int slot = reply
[all...]
H A DVariableTableTest.java65 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
66 checkReplyPacket(reply, "Method::VariableTable command");
68 int argCnt = reply.getNextValueAsInt();
70 int slots = reply.getNextValueAsInt();
73 long codeIndex = reply.getNextValueAsLong();
75 String name = reply.getNextValueAsString();
77 String signature = reply.getNextValueAsString();
79 int length = reply.getNextValueAsInt();
81 int slot = reply.getNextValueAsInt();
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
H A DCapabilitiesTest.java49 * there are no extra data in the reply packet;
59 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
60 checkReplyPacket(reply, "VirtualMachine::Capabilities command");
62 boolean canWatchFieldModification = reply.getNextValueAsBoolean();
63 boolean canWatchFieldAccess = reply.getNextValueAsBoolean();
64 boolean canGetBytecodes = reply.getNextValueAsBoolean();
65 boolean canGetSyntheticAttribute = reply.getNextValueAsBoolean();
66 boolean canGetOwnedMonitorInfo = reply.getNextValueAsBoolean();
67 boolean canGetCurrentContendedMonitor = reply.getNextValueAsBoolean();
68 boolean canGetMonitorInfo = reply
[all...]
H A DIDSizesTest.java55 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
56 checkReplyPacket(reply, "VirtualMachine::IDSizes command");
58 int fieldIDSize = reply.getNextValueAsInt();
59 int methodIDSize = reply.getNextValueAsInt();
60 int objectIDSize = reply.getNextValueAsInt();
61 int referenceTypeIDSize = reply.getNextValueAsInt();
62 int frameIDSize = reply.getNextValueAsInt();
H A DDisposeObjectsTest.java67 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
69 long stringID = reply.getNextValueAsStringID();
80 reply = debuggeeWrapper.vmMirror.performCommand(packet);
81 checkReplyPacket(reply, "VirtualMachine::DisposeObjects command");
90 reply = debuggeeWrapper.vmMirror.performCommand(packet);
91 checkReplyPacket(reply, "ObjectReference::ReferenceType command");
93 byte refTypeTag = reply.getNextValueAsByte();
94 long refTypeID = reply.getNextValueAsReferenceTypeID();
107 reply = debuggeeWrapper.vmMirror.performCommand(packet);
108 checkReplyPacket(reply, "VirtualMachin
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
H A DJDWPStackFrameTestCase.java96 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
97 checkReplyPacket(reply, "ThreadReference::FrameCount command");
99 int frameCount = reply.getNextValueAsInt();
111 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
112 checkReplyPacket(reply, "ThreadReference::FramesCommand command");
114 int frames = reply.getNextValueAsInt();
117 long frameID = reply.getNextValueAsLong();
118 Location location = reply.getNextValueAsLocation();
131 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
132 checkReplyPacket(reply, "Metho
[all...]
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dglxreply.c35 xGLXSingleReply reply; local
37 (void) _XReply(dpy, (xReply *) & reply, 0, False);
39 if ((reply.length > 0) || reply_is_always_array) {
41 ? (4 * reply.length) : (reply.size * size);
50 (void) memcpy(dest, &(reply.pad3), size);
54 return reply.retval;
62 xGLXSingleReply reply; local
65 (void) _XReply(dpy, (xReply *) & reply, 0, False);
68 width = reply
[all...]
/external/mesa3d/src/glx/apple/
H A Dglxreply.c35 xGLXSingleReply reply; local
37 (void) _XReply(dpy, (xReply *) & reply, 0, False);
39 if ((reply.length > 0) || reply_is_always_array) {
41 ? (4 * reply.length) : (reply.size * size);
50 (void) memcpy(dest, &(reply.pad3), size);
54 return reply.retval;
62 xGLXSingleReply reply; local
65 (void) _XReply(dpy, (xReply *) & reply, 0, False);
68 width = reply
[all...]
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dglx_query.c49 xcb_glx_query_server_string_reply_t *reply = local
58 uint32_t len = xcb_glx_query_server_string_string_length(reply);
60 memcpy(buf, xcb_glx_query_server_string_string(reply), len);
61 free(reply);
73 xcb_glx_get_string_reply_t *reply = xcb_glx_get_string_reply(c, local
82 uint32_t len = xcb_glx_get_string_string_length(reply);
84 memcpy(buf, xcb_glx_get_string_string(reply), len);
85 free(reply);
123 xGLXSingleReply reply; local
144 _XReply(dpy, (xReply *) & reply,
[all...]
/external/mesa3d/src/glx/
H A Dglx_query.c49 xcb_glx_query_server_string_reply_t *reply = local
58 uint32_t len = xcb_glx_query_server_string_string_length(reply);
60 memcpy(buf, xcb_glx_query_server_string_string(reply), len);
61 free(reply);
73 xcb_glx_get_string_reply_t *reply = xcb_glx_get_string_reply(c, local
82 uint32_t len = xcb_glx_get_string_string_length(reply);
84 memcpy(buf, xcb_glx_get_string_string(reply), len);
85 free(reply);
123 xGLXSingleReply reply; local
144 _XReply(dpy, (xReply *) & reply,
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassObjectReference/
H A DAbstractReflectedTypeTestCase.java52 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
53 checkReplyPacket(reply, "VirtualMachine::ClassesBySignature command");
55 int classes = reply.getNextValueAsInt();
63 refInitTypeTag = reply.getNextValueAsByte();
64 typeInitID = reply.getNextValueAsReferenceTypeID();
65 status = reply.getNextValueAsInt();
80 checkReplyPacket(reply, "ReferenceType::ClassLoader command");
107 reply = debuggeeWrapper.vmMirror.performCommand(packet);
108 checkReplyPacket(reply, "ReferenceType::ClassObject command");
110 long classObject = reply
[all...]
/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
/external/chromium_org/sandbox/mac/
H A Dmach_message_server.cc50 // Allocate the message request and reply buffers.
64 MACH_LOG(ERROR, kr) << "Failed to allocate reply buffer.";
97 mach_msg_header_t* reply = reply_message.mach = local
99 bzero(reply, buffer_size_);
101 reply->msgh_bits = MACH_MSGH_BITS_REMOTE(reply->msgh_bits);
102 // Since mach_msg will automatically swap the request and reply ports,
104 reply->msgh_remote_port = request->msgh_remote_port;
105 reply->msgh_local_port = MACH_PORT_NULL;
106 // MIG servers simply add 100 to the request ID to generate the reply I
112 SendReply(IPCMessage reply) argument
138 IPCMessage reply = CreateReply(request); local
160 mach_msg_header_t* reply = local
[all...]
/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...]

Completed in 452 milliseconds

1234567891011>>