Home
last modified time | relevance | path

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

/frameworks/av/media/libmedia/
DIMediaHTTPConnection.cpp70 int32_t exceptionCode = reply.readExceptionCode(); in connect() local
72 if (exceptionCode) { in connect()
104 int32_t exceptionCode = reply.readExceptionCode(); in readAt() local
106 if (exceptionCode) { in readAt()
148 int32_t exceptionCode = reply.readExceptionCode(); in getSize() local
150 if (exceptionCode) { in getSize()
166 int32_t exceptionCode = reply.readExceptionCode(); in getMIMEType() local
168 if (exceptionCode) { in getMIMEType()
186 int32_t exceptionCode = reply.readExceptionCode(); in getUri() local
188 if (exceptionCode) { in getUri()
/frameworks/native/libs/binder/
DStatus.cpp26 Status Status::fromExceptionCode(int32_t exceptionCode) { in fromExceptionCode() argument
27 return Status(exceptionCode, OK); in fromExceptionCode()
30 Status Status::fromExceptionCode(int32_t exceptionCode, in fromExceptionCode() argument
32 return Status(exceptionCode, OK, message); in fromExceptionCode()
35 Status Status::fromExceptionCode(int32_t exceptionCode, in fromExceptionCode() argument
37 return fromExceptionCode(exceptionCode, String8(message)); in fromExceptionCode()
60 Status::Status(int32_t exceptionCode, int32_t errorCode) in Status() argument
61 : mException(exceptionCode), in Status()
64 Status::Status(int32_t exceptionCode, int32_t errorCode, const String8& message) in Status() argument
65 : mException(exceptionCode), in Status()
DIActivityManager.cpp44 int32_t exceptionCode = reply.readExceptionCode(); in openContentUri() local
45 if (!exceptionCode) { in openContentUri()
54 String8(stringUri).string(), exceptionCode); in openContentUri()
DParcel.cpp2177 return status.exceptionCode(); in readExceptionCode()
/frameworks/native/libs/binder/include/binder/
DStatus.h86 static Status fromExceptionCode(int32_t exceptionCode);
87 static Status fromExceptionCode(int32_t exceptionCode,
89 static Status fromExceptionCode(int32_t exceptionCode,
123 int32_t exceptionCode() const { return mException; } in exceptionCode() function
138 Status(int32_t exceptionCode, int32_t errorCode);
139 Status(int32_t exceptionCode, int32_t errorCode, const String8& message);