Searched refs:exceptionCode (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libmediaplayerservice/
H A DActivityManager.cpp43 int32_t exceptionCode = reply.readExceptionCode(); local
44 if (!exceptionCode) {
53 String8(uri).string(), exceptionCode);
/frameworks/av/media/libmedia/
H A DIMediaHTTPConnection.cpp70 int32_t exceptionCode = reply.readExceptionCode(); local
72 if (exceptionCode) {
104 int32_t exceptionCode = reply.readExceptionCode(); local
106 if (exceptionCode) {
140 int32_t exceptionCode = reply.readExceptionCode(); local
142 if (exceptionCode) {
158 int32_t exceptionCode = reply.readExceptionCode(); local
160 if (exceptionCode) {
178 int32_t exceptionCode = reply.readExceptionCode(); local
180 if (exceptionCode) {
[all...]
/frameworks/native/include/binder/
H A DStatus.h83 static Status fromExceptionCode(int32_t exceptionCode);
84 static Status fromExceptionCode(int32_t exceptionCode,
114 int32_t exceptionCode() const { return mException; } function in class:android::binder::final
129 Status(int32_t exceptionCode, int32_t errorCode);
130 Status(int32_t exceptionCode, int32_t errorCode, const String8& message);
/frameworks/native/libs/binder/
H A DStatus.cpp26 Status Status::fromExceptionCode(int32_t exceptionCode) { argument
27 return Status(exceptionCode, OK);
30 Status Status::fromExceptionCode(int32_t exceptionCode, argument
32 return Status(exceptionCode, OK, message);
50 Status::Status(int32_t exceptionCode, int32_t errorCode) argument
51 : mException(exceptionCode),
54 Status::Status(int32_t exceptionCode, int32_t errorCode, const String8& message) argument
55 : mException(exceptionCode),
H A DParcel.cpp1948 return status.exceptionCode();

Completed in 517 milliseconds