• Home
  • Raw
  • Download

Lines Matching refs:reply

65         Parcel data, reply;  in registerListener()  local
68 if (remote()->transact(TRANSACTION_registerListener, data, &reply) != NO_ERROR) { in registerListener()
72 int32_t err = reply.readExceptionCode(); in registerListener()
81 Parcel data, reply; in unregisterListener() local
84 if (remote()->transact(TRANSACTION_unregisterListener, data, &reply) != NO_ERROR) { in unregisterListener()
88 int32_t err = reply.readExceptionCode(); in unregisterListener()
97 Parcel data, reply; in isUsbMassStorageConnected() local
99 if (remote()->transact(TRANSACTION_isUsbMassStorageConnected, data, &reply) != NO_ERROR) { in isUsbMassStorageConnected()
103 int32_t err = reply.readExceptionCode(); in isUsbMassStorageConnected()
108 return reply.readInt32() != 0; in isUsbMassStorageConnected()
113 Parcel data, reply; in setUsbMassStorageEnabled() local
116 if (remote()->transact(TRANSACTION_setUsbMassStorageEnabled, data, &reply) != NO_ERROR) { in setUsbMassStorageEnabled()
120 int32_t err = reply.readExceptionCode(); in setUsbMassStorageEnabled()
129 Parcel data, reply; in isUsbMassStorageEnabled() local
131 if (remote()->transact(TRANSACTION_isUsbMassStorageEnabled, data, &reply) != NO_ERROR) { in isUsbMassStorageEnabled()
135 int32_t err = reply.readExceptionCode(); in isUsbMassStorageEnabled()
140 return reply.readInt32() != 0; in isUsbMassStorageEnabled()
145 Parcel data, reply; in mountVolume() local
148 if (remote()->transact(TRANSACTION_mountVolume, data, &reply) != NO_ERROR) { in mountVolume()
152 int32_t err = reply.readExceptionCode(); in mountVolume()
157 return reply.readInt32(); in mountVolume()
162 Parcel data, reply; in unmountVolume() local
167 if (remote()->transact(TRANSACTION_unmountVolume, data, &reply) != NO_ERROR) { in unmountVolume()
171 int32_t err = reply.readExceptionCode(); in unmountVolume()
176 return reply.readInt32(); in unmountVolume()
181 Parcel data, reply; in formatVolume() local
184 if (remote()->transact(TRANSACTION_formatVolume, data, &reply) != NO_ERROR) { in formatVolume()
188 int32_t err = reply.readExceptionCode(); in formatVolume()
193 return reply.readInt32(); in formatVolume()
198 Parcel data, reply; in getStorageUsers() local
201 if (remote()->transact(TRANSACTION_getStorageUsers, data, &reply) != NO_ERROR) { in getStorageUsers()
205 int32_t err = reply.readExceptionCode(); in getStorageUsers()
210 const int32_t numUsers = reply.readInt32(); in getStorageUsers()
213 **users++ = reply.readInt32(); in getStorageUsers()
220 Parcel data, reply; in getVolumeState() local
223 if (remote()->transact(TRANSACTION_getVolumeState, data, &reply) != NO_ERROR) { in getVolumeState()
227 int32_t err = reply.readExceptionCode(); in getVolumeState()
232 return reply.readInt32(); in getVolumeState()
238 Parcel data, reply; in createSecureContainer() local
245 if (remote()->transact(TRANSACTION_createSecureContainer, data, &reply) != NO_ERROR) { in createSecureContainer()
249 int32_t err = reply.readExceptionCode(); in createSecureContainer()
254 return reply.readInt32(); in createSecureContainer()
259 Parcel data, reply; in finalizeSecureContainer() local
262 if (remote()->transact(TRANSACTION_finalizeSecureContainer, data, &reply) != NO_ERROR) { in finalizeSecureContainer()
266 int32_t err = reply.readExceptionCode(); in finalizeSecureContainer()
271 return reply.readInt32(); in finalizeSecureContainer()
276 Parcel data, reply; in destroySecureContainer() local
279 if (remote()->transact(TRANSACTION_destroySecureContainer, data, &reply) != NO_ERROR) { in destroySecureContainer()
283 int32_t err = reply.readExceptionCode(); in destroySecureContainer()
288 return reply.readInt32(); in destroySecureContainer()
293 Parcel data, reply; in mountSecureContainer() local
298 if (remote()->transact(TRANSACTION_mountSecureContainer, data, &reply) != NO_ERROR) { in mountSecureContainer()
302 int32_t err = reply.readExceptionCode(); // What to do... in mountSecureContainer()
307 return reply.readInt32(); in mountSecureContainer()
312 Parcel data, reply; in unmountSecureContainer() local
316 if (remote()->transact(TRANSACTION_getSecureContainerPath, data, &reply) != NO_ERROR) { in unmountSecureContainer()
320 int32_t err = reply.readExceptionCode(); // What to do... in unmountSecureContainer()
325 return reply.readInt32(); in unmountSecureContainer()
330 Parcel data, reply; in isSecureContainerMounted() local
333 if (remote()->transact(TRANSACTION_isSecureContainerMounted, data, &reply) != NO_ERROR) { in isSecureContainerMounted()
337 int32_t err = reply.readExceptionCode(); // What to do... in isSecureContainerMounted()
342 return reply.readInt32() != 0; in isSecureContainerMounted()
347 Parcel data, reply; in renameSecureContainer() local
351 if (remote()->transact(TRANSACTION_renameSecureContainer, data, &reply) != NO_ERROR) { in renameSecureContainer()
355 int32_t err = reply.readExceptionCode(); // What to do... in renameSecureContainer()
360 return reply.readInt32(); in renameSecureContainer()
365 Parcel data, reply; in getSecureContainerPath() local
368 if (remote()->transact(TRANSACTION_getSecureContainerPath, data, &reply) != NO_ERROR) { in getSecureContainerPath()
372 int32_t err = reply.readExceptionCode(); // What to do... in getSecureContainerPath()
377 path = reply.readString16(); in getSecureContainerPath()
383 Parcel data, reply; in getSecureContainerList() local
386 if (remote()->transact(TRANSACTION_getSecureContainerList, data, &reply) != NO_ERROR) { in getSecureContainerList()
390 int32_t err = reply.readExceptionCode(); in getSecureContainerList()
395 const int32_t numStrings = reply.readInt32(); in getSecureContainerList()
398 containers[i] = reply.readString16(); in getSecureContainerList()
405 Parcel data, reply; in shutdown() local
408 if (remote()->transact(TRANSACTION_shutdown, data, &reply) != NO_ERROR) { in shutdown()
412 int32_t err = reply.readExceptionCode(); in shutdown()
417 reply.readExceptionCode(); in shutdown()
422 Parcel data, reply; in finishMediaUpdate() local
424 if (remote()->transact(TRANSACTION_finishMediaUpdate, data, &reply) != NO_ERROR) { in finishMediaUpdate()
428 int32_t err = reply.readExceptionCode(); in finishMediaUpdate()
433 reply.readExceptionCode(); in finishMediaUpdate()
439 Parcel data, reply; in mountObb() local
446 if (remote()->transact(TRANSACTION_mountObb, data, &reply) != NO_ERROR) { in mountObb()
450 int32_t err = reply.readExceptionCode(); in mountObb()
460 Parcel data, reply; in unmountObb() local
466 if (remote()->transact(TRANSACTION_unmountObb, data, &reply) != NO_ERROR) { in unmountObb()
470 int32_t err = reply.readExceptionCode(); in unmountObb()
479 Parcel data, reply; in isObbMounted() local
482 if (remote()->transact(TRANSACTION_isObbMounted, data, &reply) != NO_ERROR) { in isObbMounted()
486 int32_t err = reply.readExceptionCode(); in isObbMounted()
491 return reply.readInt32() != 0; in isObbMounted()
496 Parcel data, reply; in getMountedObbPath() local
499 if (remote()->transact(TRANSACTION_getMountedObbPath, data, &reply) != NO_ERROR) { in getMountedObbPath()
503 int32_t err = reply.readExceptionCode(); in getMountedObbPath()
508 path = reply.readString16(); in getMountedObbPath()
514 Parcel data, reply; in decryptStorage() local
517 if (remote()->transact(TRANSACTION_decryptStorage, data, &reply) != NO_ERROR) { in decryptStorage()
521 int32_t err = reply.readExceptionCode(); in decryptStorage()
526 return reply.readInt32(); in decryptStorage()
531 Parcel data, reply; in encryptStorage() local
534 if (remote()->transact(TRANSACTION_encryptStorage, data, &reply) != NO_ERROR) { in encryptStorage()
538 int32_t err = reply.readExceptionCode(); in encryptStorage()
543 return reply.readInt32(); in encryptStorage()