Lines Matching refs:reply

65         Parcel data, reply;
68 if (remote()->transact(TRANSACTION_registerListener, data, &reply) != NO_ERROR) {
72 int32_t err = reply.readExceptionCode();
81 Parcel data, reply;
84 if (remote()->transact(TRANSACTION_unregisterListener, data, &reply) != NO_ERROR) {
88 int32_t err = reply.readExceptionCode();
97 Parcel data, reply;
99 if (remote()->transact(TRANSACTION_isUsbMassStorageConnected, data, &reply) != NO_ERROR) {
103 int32_t err = reply.readExceptionCode();
108 return reply.readInt32() != 0;
113 Parcel data, reply;
116 if (remote()->transact(TRANSACTION_setUsbMassStorageEnabled, data, &reply) != NO_ERROR) {
120 int32_t err = reply.readExceptionCode();
129 Parcel data, reply;
131 if (remote()->transact(TRANSACTION_isUsbMassStorageEnabled, data, &reply) != NO_ERROR) {
135 int32_t err = reply.readExceptionCode();
140 return reply.readInt32() != 0;
145 Parcel data, reply;
148 if (remote()->transact(TRANSACTION_mountVolume, data, &reply) != NO_ERROR) {
152 int32_t err = reply.readExceptionCode();
157 return reply.readInt32();
162 Parcel data, reply;
167 if (remote()->transact(TRANSACTION_unmountVolume, data, &reply) != NO_ERROR) {
171 int32_t err = reply.readExceptionCode();
176 return reply.readInt32();
181 Parcel data, reply;
184 if (remote()->transact(TRANSACTION_formatVolume, data, &reply) != NO_ERROR) {
188 int32_t err = reply.readExceptionCode();
193 return reply.readInt32();
198 Parcel data, reply;
201 if (remote()->transact(TRANSACTION_getStorageUsers, data, &reply) != NO_ERROR) {
205 int32_t err = reply.readExceptionCode();
210 const int32_t numUsers = reply.readInt32();
213 **users++ = reply.readInt32();
220 Parcel data, reply;
223 if (remote()->transact(TRANSACTION_getVolumeState, data, &reply) != NO_ERROR) {
227 int32_t err = reply.readExceptionCode();
232 return reply.readInt32();
238 Parcel data, reply;
245 if (remote()->transact(TRANSACTION_createSecureContainer, data, &reply) != NO_ERROR) {
249 int32_t err = reply.readExceptionCode();
254 return reply.readInt32();
259 Parcel data, reply;
262 if (remote()->transact(TRANSACTION_finalizeSecureContainer, data, &reply) != NO_ERROR) {
266 int32_t err = reply.readExceptionCode();
271 return reply.readInt32();
276 Parcel data, reply;
279 if (remote()->transact(TRANSACTION_destroySecureContainer, data, &reply) != NO_ERROR) {
283 int32_t err = reply.readExceptionCode();
288 return reply.readInt32();
293 Parcel data, reply;
298 if (remote()->transact(TRANSACTION_mountSecureContainer, data, &reply) != NO_ERROR) {
302 int32_t err = reply.readExceptionCode(); // What to do...
307 return reply.readInt32();
312 Parcel data, reply;
316 if (remote()->transact(TRANSACTION_getSecureContainerPath, data, &reply) != NO_ERROR) {
320 int32_t err = reply.readExceptionCode(); // What to do...
325 return reply.readInt32();
330 Parcel data, reply;
333 if (remote()->transact(TRANSACTION_isSecureContainerMounted, data, &reply) != NO_ERROR) {
337 int32_t err = reply.readExceptionCode(); // What to do...
342 return reply.readInt32() != 0;
347 Parcel data, reply;
351 if (remote()->transact(TRANSACTION_renameSecureContainer, data, &reply) != NO_ERROR) {
355 int32_t err = reply.readExceptionCode(); // What to do...
360 return reply.readInt32();
365 Parcel data, reply;
368 if (remote()->transact(TRANSACTION_getSecureContainerPath, data, &reply) != NO_ERROR) {
372 int32_t err = reply.readExceptionCode(); // What to do...
377 path = reply.readString16();
383 Parcel data, reply;
386 if (remote()->transact(TRANSACTION_getSecureContainerList, data, &reply) != NO_ERROR) {
390 int32_t err = reply.readExceptionCode();
395 const int32_t numStrings = reply.readInt32();
398 containers[i] = reply.readString16();
405 Parcel data, reply;
408 if (remote()->transact(TRANSACTION_shutdown, data, &reply) != NO_ERROR) {
412 int32_t err = reply.readExceptionCode();
417 reply.readExceptionCode();
422 Parcel data, reply;
424 if (remote()->transact(TRANSACTION_finishMediaUpdate, data, &reply) != NO_ERROR) {
428 int32_t err = reply.readExceptionCode();
433 reply.readExceptionCode();
439 Parcel data, reply;
445 if (remote()->transact(TRANSACTION_mountObb, data, &reply) != NO_ERROR) {
449 int32_t err = reply.readExceptionCode();
459 Parcel data, reply;
465 if (remote()->transact(TRANSACTION_unmountObb, data, &reply) != NO_ERROR) {
469 int32_t err = reply.readExceptionCode();
478 Parcel data, reply;
481 if (remote()->transact(TRANSACTION_isObbMounted, data, &reply) != NO_ERROR) {
485 int32_t err = reply.readExceptionCode();
490 return reply.readInt32() != 0;
495 Parcel data, reply;
498 if (remote()->transact(TRANSACTION_getMountedObbPath, data, &reply) != NO_ERROR) {
502 int32_t err = reply.readExceptionCode();
507 path = reply.readString16();
513 Parcel data, reply;
516 if (remote()->transact(TRANSACTION_decryptStorage, data, &reply) != NO_ERROR) {
520 int32_t err = reply.readExceptionCode();
525 return reply.readInt32();
530 Parcel data, reply;
533 if (remote()->transact(TRANSACTION_encryptStorage, data, &reply) != NO_ERROR) {
537 int32_t err = reply.readExceptionCode();
542 return reply.readInt32();