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

12

/system/core/gatekeeperd/
H A DIUserManager.cpp34 Parcel data, reply; local
37 status_t rc = remote()->transact(GET_CREDENTIAL_OWNER_PROFILE, data, &reply, 0);
43 int32_t exception = reply.readExceptionCode();
49 return reply.readInt32();
H A DIGateKeeperService.cpp30 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) {
33 CHECK_INTERFACE(IGateKeeperService, data, reply);
57 reply->writeNoException();
58 reply->writeInt32(1);
60 reply->writeInt32(GATEKEEPER_RESPONSE_OK);
61 reply->writeInt32(0);
62 reply->writeInt32(outSize);
63 reply->writeInt32(outSize);
64 void *buf = reply->writeInplace(outSize);
68 reply
29 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
/system/bt/service/common/bluetooth/binder/
H A DIBluetoothCallback.cpp40 Parcel* reply,
59 return BBinder::onTransact(code, data, reply, flags);
73 Parcel data, reply; local
80 data, &reply);
37 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DIBluetoothGattClient.cpp39 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) {
49 reply->writeInt32(result);
62 return BBinder::onTransact(code, data, reply, flags);
75 Parcel data, reply; local
81 data, &reply);
83 return reply.readInt32();
87 Parcel data, reply; local
93 data, &reply);
97 Parcel data, reply; local
102 data, &reply);
38 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
H A DIBluetoothGattClientCallback.cpp40 Parcel* reply,
54 return BBinder::onTransact(code, data, reply, flags);
68 Parcel data, reply; local
77 data, &reply,
37 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DIBluetoothLowEnergyCallback.cpp45 Parcel* reply,
90 return BBinder::onTransact(code, data, reply, flags);
104 Parcel data, reply; local
113 data, &reply,
153 Parcel data, reply; local
161 data, &reply,
168 Parcel data, reply; local
178 data, &reply,
42 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DIBluetooth.cpp66 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) {
71 CHECK_INTERFACE(IBluetooth, data, reply);
73 reply->writeInt32(is_enabled);
77 CHECK_INTERFACE(IBluetooth, data, reply);
79 reply->writeInt32(state);
83 CHECK_INTERFACE(IBluetooth, data, reply);
86 reply->writeInt32(result);
90 CHECK_INTERFACE(IBluetooth, data, reply);
92 reply->writeInt32(result);
96 CHECK_INTERFACE(IBluetooth, data, reply);
65 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
169 Parcel data, reply; local
178 Parcel data, reply; local
187 Parcel data, reply; local
197 Parcel data, reply; local
207 Parcel data, reply; local
216 Parcel data, reply; local
231 Parcel data, reply; local
241 Parcel data, reply; local
250 Parcel data, reply; local
259 Parcel data, reply; local
268 Parcel data, reply; local
279 Parcel data, reply; local
290 Parcel data, reply; local
301 Parcel data, reply; local
[all...]
H A DIBluetoothGattServer.cpp41 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) {
51 reply->writeInt32(result);
73 reply->writeInt32(result);
77 WriteGattIdentifierToParcel(*out_id, reply);
93 reply->writeInt32(result);
97 WriteGattIdentifierToParcel(*out_id, reply);
111 reply->writeInt32(result);
115 WriteGattIdentifierToParcel(*out_id, reply);
123 reply->writeInt32(result);
140 reply
40 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
176 Parcel data, reply; local
188 Parcel data, reply; local
198 Parcel data, reply; local
210 Parcel data, reply; local
233 Parcel data, reply; local
255 Parcel data, reply; local
273 Parcel data, reply; local
290 Parcel data, reply; local
312 Parcel data, reply; local
[all...]
H A DIBluetoothGattServerCallback.cpp42 Parcel* reply,
136 return BBinder::onTransact(code, data, reply, flags);
150 Parcel data, reply; local
159 data, &reply,
166 Parcel data, reply; local
174 data, &reply,
182 Parcel data, reply; local
194 data, &reply,
202 Parcel data, reply; local
214 data, &reply,
39 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
223 Parcel data, reply; local
246 Parcel data, reply; local
267 Parcel data, reply; local
284 Parcel data, reply; local
[all...]
H A DIBluetoothLowEnergy.cpp44 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) {
55 reply->writeInt32(result);
74 reply->writeInt32(result);
83 reply->writeInt32(result);
93 reply->writeInt32(result);
116 reply->writeInt32(result);
123 reply->writeInt32(result);
138 reply->writeInt32(result);
146 reply->writeInt32(result);
151 return BBinder::onTransact(code, data, reply, flag
43 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
164 Parcel data, reply; local
176 Parcel data, reply; local
186 Parcel data, reply; local
196 Parcel data, reply; local
210 Parcel data, reply; local
223 Parcel data, reply; local
238 Parcel data, reply; local
259 Parcel data, reply; local
275 Parcel data, reply; local
290 Parcel data, reply; local
[all...]
/system/tools/aidl/tests/
H A Dtest_helpers.h36 T reply; local
37 android::binder::Status status = (*service.*func)(input, &reply);
38 if (!status.isOk() || input != reply) {
H A Daidl_test_client_primitives.cpp91 String16 reply; local
92 Status status = s->RepeatString(input, &reply);
93 if (!status.isOk() || input != reply) {
H A Daidl_test_client_utf8_strings.cpp59 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...]
/system/core/fingerprintd/
H A DIFingerprintDaemonCallback.cpp34 Parcel data, reply; local
40 return remote()->transact(ON_ENROLL_RESULT, data, &reply, IBinder::FLAG_ONEWAY);
44 Parcel data, reply; local
48 return remote()->transact(ON_ACQUIRED, data, &reply, IBinder::FLAG_ONEWAY);
52 Parcel data, reply; local
57 return remote()->transact(ON_AUTHENTICATED, data, &reply, IBinder::FLAG_ONEWAY);
61 Parcel data, reply; local
65 return remote()->transact(ON_ERROR, data, &reply, IBinder::FLAG_ONEWAY);
69 Parcel data, reply; local
74 return remote()->transact(ON_REMOVED, data, &reply, IBinde
78 Parcel data, reply; local
[all...]
H A DIFingerprintDaemon.cpp47 status_t BnFingerprintDaemon::onTransact(uint32_t code, const Parcel& data, Parcel* reply, argument
51 CHECK_INTERFACE(IFingerprintDaemon, data, reply);
58 reply->writeNoException();
59 reply->writeInt32(ret);
63 CHECK_INTERFACE(IFingerprintDaemon, data, reply);
68 reply->writeNoException();
69 reply->writeInt32(ret);
73 CHECK_INTERFACE(IFingerprintDaemon, data, reply);
82 reply->writeNoException();
83 reply
[all...]
/system/nativepower/daemon/
H A DBnPowerManager.cc25 Parcel* reply,
32 CHECK_INTERFACE(IPowerManager, data, reply);
41 CHECK_INTERFACE(IPowerManager, data, reply);
50 CHECK_INTERFACE(IPowerManager, data, reply);
56 CHECK_INTERFACE(IPowerManager, data, reply);
62 CHECK_INTERFACE(IPowerManager, data, reply);
68 CHECK_INTERFACE(IPowerManager, data, reply);
75 CHECK_INTERFACE(IPowerManager, data, reply);
82 CHECK_INTERFACE(IPowerManager, data, reply);
89 CHECK_INTERFACE(IPowerManager, data, reply);
23 onTransact(uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
/system/tpm/attestation/server/
H A Ddbus_service_test.cc95 CreateGoogleAttestedKeyReply reply;
96 reply.set_status(STATUS_SUCCESS);
97 reply.set_certificate_chain("certificate");
98 reply.set_server_error("server_error");
99 callback.Run(reply);
107 CreateGoogleAttestedKeyReply reply; local
108 EXPECT_TRUE(reader.PopArrayOfBytesAsProto(&reply));
109 EXPECT_EQ(STATUS_SUCCESS, reply.status());
110 EXPECT_EQ("certificate", reply.certificate_chain());
111 EXPECT_EQ("server_error", reply
130 CreateGoogleAttestedKeyReply reply; local
159 GetKeyInfoReply reply; local
190 GetEndorsementInfoReply reply; local
220 GetAttestationKeyInfoReply reply; local
258 ActivateAttestationKeyReply reply; local
291 CreateCertifiableKeyReply reply; local
321 DecryptReply reply; local
349 SignReply reply; local
376 RegisterKeyWithChapsTokenReply reply; local
[all...]
H A Dattestation_service.h127 // A relay callback which allows the use of weak pointer semantics for a reply
132 const std::shared_ptr<ReplyProtobufType>& reply) {
133 callback.Run(*reply);
222 // the |reply|. Returns true on success.
225 std::string* reply);
130 TaskRelayCallback( const base::Callback<void(const ReplyProtobufType&)> callback, const std::shared_ptr<ReplyProtobufType>& reply) argument
/system/security/keystore-engine/
H A Ddsa_meth.cpp70 uint8_t* reply = NULL; local
73 dlen, &reply, &replyLen);
89 const_cast<const unsigned char**>(reinterpret_cast<unsigned char**>(&reply)),
H A Decdsa_meth.cpp76 uint8_t* reply = NULL; local
79 dlen, &reply, &replyLen);
95 const_cast<const unsigned char**>(reinterpret_cast<unsigned char**>(&reply)),
H A Drsa_meth.cpp91 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
[all...]
H A Dandroid_engine.cpp157 uint8_t* reply = NULL; local
159 int32_t ret = service->sign(String16(key_id), in, len, &reply, &reply_len);
168 free(reply);
177 memcpy(out, reply + reply_len - len, len);
184 memcpy(out + len - reply_len, reply, reply_len);
186 memcpy(out, reply, len);
189 free(reply);
256 uint8_t* reply = NULL; local
259 digest, digest_len, &reply, &reply_len);
268 free(reply);
[all...]
/system/tpm/tpm_manager/server/
H A Ddbus_service_test.cc63 ReplyProtobufType* reply,
72 EXPECT_TRUE(reader.PopArrayOfBytesAsProto(reply));
96 GetTpmStatusReply reply;
97 base::Closure copy = base::Bind(callback, reply);
98 callback.Run(reply);
101 GetTpmStatusReply reply; local
102 ExecuteMethod(kGetTpmStatus, request, &reply, kTpmOwnershipInterface);
111 GetTpmStatusReply reply;
112 reply.set_status(STATUS_SUCCESS);
113 reply
61 ExecuteMethod(const std::string& method_name, const RequestProtobufType& request, ReplyProtobufType* reply, const std::string& interface) argument
121 GetTpmStatusReply reply; local
142 TakeOwnershipReply reply; local
162 RemoveOwnerDependencyReply reply; local
188 DefineNvramReply reply; local
207 DestroyNvramReply reply; local
230 WriteNvramReply reply; local
251 ReadNvramReply reply; local
274 IsNvramDefinedReply reply; local
297 IsNvramLockedReply reply; local
320 GetNvramSizeReply reply; local
[all...]
/system/connectivity/shill/
H A Darp_client_unittest.cc219 ArpPacket reply; local
231 EXPECT_FALSE(client_.ReceivePacket(&reply, &sender));
237 EXPECT_FALSE(client_.ReceivePacket(&reply, &sender));
249 EXPECT_TRUE(client_.ReceivePacket(&reply, &sender));
250 EXPECT_TRUE(reply.local_ip_address().Equals(packet.local_ip_address()));
251 EXPECT_TRUE(reply.local_mac_address().Equals(packet.local_mac_address()));
252 EXPECT_TRUE(reply.remote_ip_address().Equals(packet.remote_ip_address()));
253 EXPECT_TRUE(reply.remote_mac_address().Equals(packet.remote_mac_address()));
/system/extras/tests/binder/benchmarks/
H A DbinderAddInts.cpp73 const Parcel& data, Parcel* reply,
131 Parcel send, reply; local
146 send, &reply)) != 0) {
153 int result = reply.readInt32();
173 Parcel* reply, uint32_t /* flags */) {
194 reply->writeInt32(val1 + val2);
172 onTransact(uint32_t code, const Parcel &data, Parcel* reply, uint32_t ) argument

Completed in 563 milliseconds

12