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

1 2 3 4 56 7 8 91011>>

  /hardware/qcom/display/msm8084/libqservice/
IQService.cpp 49 Parcel data, reply; local
52 remote()->transact(CONNECT_HWC_CLIENT, data, &reply);
57 Parcel data, reply; local
60 remote()->transact(CONNECT_HDMI_CLIENT, data, &reply);
69 Parcel *reply = outParcel; local
73 err = remote()->transact(command, data, reply);
85 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
103 CHECK_INTERFACE(IQService, data, reply);
115 CHECK_INTERFACE(IQService, data, reply);
133 CHECK_INTERFACE(IQService, data, reply);
    [all...]
  /hardware/qcom/display/msm8226/libqservice/
IQService.cpp 49 Parcel data, reply; local
52 remote()->transact(CONNECT, data, &reply);
60 Parcel *reply = outParcel; local
64 err = remote()->transact(command, data, reply);
76 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
94 CHECK_INTERFACE(IQService, data, reply);
112 CHECK_INTERFACE(IQService, data, reply);
113 dispatch(code, &data, reply);
116 return BBinder::onTransact(code, data, reply, flags);
  /hardware/qcom/display/msm8909/libqservice/
IQService.cpp 49 Parcel data, reply; local
52 remote()->transact(CONNECT, data, &reply);
60 Parcel *reply = outParcel; local
64 err = remote()->transact(command, data, reply);
76 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
94 CHECK_INTERFACE(IQService, data, reply);
112 CHECK_INTERFACE(IQService, data, reply);
113 dispatch(code, &data, reply);
116 return BBinder::onTransact(code, data, reply, flags);
  /hardware/qcom/display/msm8994/libqservice/
IQService.cpp 49 Parcel data, reply; local
52 remote()->transact(CONNECT, data, &reply);
60 Parcel *reply = outParcel; local
64 err = remote()->transact(command, data, reply);
76 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
94 CHECK_INTERFACE(IQService, data, reply);
112 CHECK_INTERFACE(IQService, data, reply);
113 dispatch(code, &data, reply);
116 return BBinder::onTransact(code, data, reply, flags);
  /packages/services/Car/libvehiclenetwork/native/
IVehicleNetworkListener.cpp 48 Parcel data, reply; local
63 remote()->transact(ON_EVENTS, data, &reply);
67 Parcel data, reply; local
72 remote()->transact(ON_HAL_ERROR, data, &reply);
76 Parcel data, reply; local
79 remote()->transact(ON_HAL_RESTART, data, &reply);
87 status_t BnVehicleNetworkListener::onTransact(uint32_t code, const Parcel& data, Parcel* reply,
92 CHECK_INTERFACE(IVehicleNetworkListener, data, reply);
123 CHECK_INTERFACE(IVehicleNetworkListener, data, reply);
131 CHECK_INTERFACE(IVehicleNetworkListener, data, reply);
    [all...]
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
CallerInfoAsyncQueryFactoryFixture.java 43 void reply() { method in class:CallerInfoAsyncQueryFactoryFixture.Request
  /system/security/keystore-engine/
dsa_meth.cpp 70 uint8_t* reply = NULL; local
73 dlen, &reply, &replyLen);
89 const_cast<const unsigned char**>(reinterpret_cast<unsigned char**>(&reply)),
ecdsa_meth.cpp 76 uint8_t* reply = NULL; local
79 dlen, &reply, &replyLen);
95 const_cast<const unsigned char**>(reinterpret_cast<unsigned char**>(&reply)),
rsa_meth.cpp 91 uint8_t* reply = NULL; local
94 num, &reply, &replyLen);
97 free(reply);
101 free(reply);
108 memcpy(to, reply, replyLen);
109 free(reply);
137 uint8_t* reply = NULL; local
140 flen, &reply, &replyLen);
154 if (*reply == 0x00) {
155 alignedReply = reply + 1
    [all...]
  /system/tools/aidl/tests/
aidl_test_client_primitives.cpp 91 String16 reply; local
92 Status status = s->RepeatString(input, &reply);
93 if (!status.isOk() || input != reply) {
aidl_test_client_utf8_strings.cpp 59 string reply; local
60 Status status = s->RepeatUtf8CppString(input, &reply);
61 if (!status.isOk() || input != reply) {
65 << " and output=" << reply;
78 unique_ptr<string> reply; local
80 unique_ptr<string>(new string(input)), &reply);
86 if (!reply) {
87 LOG(ERROR) << "Got null reply while repeating nullable utf8 string "
91 if (input != *reply) {
95 << " and output=" << *reply;
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
InvokeMethod002Test.java 64 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
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.getNextValueAsInt()
    [all...]
JDWPClassTypeTestCase.java 121 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
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());
SetValuesTest.java 134 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
135 checkReplyPacket(reply, "ClassType::SetValues command");
144 reply = debuggeeWrapper.vmMirror.performCommand(packet);
145 checkReplyPacket(reply, "ClassType::GetValues command");
147 int fields = reply.getNextValueAsInt();
149 Value returnedValue = reply.getNextValueAsValue();
160 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
161 checkReplyPacket(reply, "ReferenceType::Fields command");
163 int declared = reply.getNextValueAsInt();
167 reply.getNextValueAsFieldID()
    [all...]
SuperClassTest.java 48 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
49 checkReplyPacket(reply, "ClassType.Superclass command", errorExpected);
50 return reply;
53 private void asserSuperClassReplyIsValid(ReplyPacket reply, String expectedSignature) {
54 assertTrue(reply.getErrorCode() == JDWPConstants.Error.NONE);
55 long superClassID = reply.getNextValueAsClassID();
89 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE); local
91 asserSuperClassReplyIsValid(reply, "Ljava/lang/Object;");
99 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE); local
101 asserSuperClassReplyIsValid(reply, "Ljava/lang/Object;")
109 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE); local
118 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE); local
128 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE); local
153 ReplyPacket reply = jdwpGetSuperClassReply(interfaceID, JDWPConstants.Error.NONE); local
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
JDWPStackFrameTestCase.java 96 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
97 checkReplyPacket(reply, "ThreadReference::FrameCount command");
99 int frameCount = reply.getNextValueAsInt();
111 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
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); local
132 checkReplyPacket(reply, "Method::VariableTable command")
155 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
174 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
187 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
197 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
208 ReplyPacket reply = debuggeeWrapper.vmMirror local
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassObjectReference/
AbstractReflectedTypeTestCase.java 52 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
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.getNextValueAsClassObjectID()
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
ClassPrepareTest.java 57 ReplyPacket reply = debuggeeWrapper.vmMirror.setClassPrepared(class2prepareRegexp); local
58 checkReplyPacket(reply, "Set CLASS_PREPARE event");
95 ReplyPacket reply = debuggeeWrapper.vmMirror.setClassPreparedForSourceNameMatch(expectedSourceNamePattern); local
96 checkReplyPacket(reply, "Set CLASS_PREPARE event");
158 ReplyPacket reply = debuggeeWrapper.vmMirror.setClassPreparedForSourceNameMatch(expectedSourceNamePattern); local
159 checkReplyPacket(reply, "Set CLASS_PREPARE event");
ClassUnloadTest.java 59 ReplyPacket reply = null; local
67 reply = debuggeeWrapper.vmMirror.getClassBySignature(TESTED_CLASS_SIGNATURE);
68 foundClasses = reply.getNextValueAsInt();
77 reply = debuggeeWrapper.vmMirror.setClassUnload(TESTED_CLASS_NAME);
78 checkReplyPacket(reply, "Set CLASS_UNLOAD event");
79 int requestID = reply.getNextValueAsInt();
98 reply = debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.CLASS_UNLOAD, requestID);
101 reply = debuggeeWrapper.vmMirror.getClassBySignature(TESTED_CLASS_SIGNATURE);
102 foundClasses = reply.getNextValueAsInt();
FieldModification002Test.java 93 ReplyPacket reply = debuggeeWrapper.vmMirror.setFieldModification(classSignature, JDWPConstants.TypeTag.CLASS, fieldName); local
94 checkReplyPacket(reply, "Set FIELD_MODIFICATION event");
95 int requestID = reply.getNextValueAsInt();
96 assertAllDataRead(reply);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
JDWPMethodTestCase.java 92 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
94 assertTrue(reply.getErrorCode() == JDWPConstants.Error.NONE);
95 int declared = reply.getNextValueAsInt();
100 reply.getNextValueAsMethodID(),
101 reply.getNextValueAsString(),
102 reply.getNextValueAsString(),
103 reply.getNextValueAsInt()
VariableTableTest.java 65 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
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();
VariableTableWithGenericTest.java 66 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
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.getNextValueAsInt()
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
AttachConnectorTest.java 62 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
63 checkReplyPacket(reply, "VirtualMachine::Version command");
65 String description = reply.getNextValueAsString();
66 int jdwpMajor = reply.getNextValueAsInt();
67 int jdwpMinor = reply.getNextValueAsInt();
68 String vmVersion = reply.getNextValueAsString();
69 String vmName = reply.getNextValueAsString();
ClassPrepareTest.java 62 ReplyPacket reply = debuggeeWrapper.vmMirror local
64 checkReplyPacket(reply, "Set CLASS_PREPARE event");

Completed in 316 milliseconds

1 2 3 4 56 7 8 91011>>