HomeSort by relevance Sort by last modified time
    Searched defs:opStatus (Results 1 - 3 of 3) sorted by null

  /frameworks/base/media/jni/
android_media_MediaRecorder.cpp 117 static bool process_media_recorder_call(JNIEnv *env, status_t opStatus, const char* exception, const char* message)
120 if (opStatus == (status_t)INVALID_OPERATION) {
123 } else if (opStatus != (status_t)OK) {
264 status_t opStatus = mr->setOutputFile(fd, offset, length);
265 process_media_recorder_call(env, opStatus, "java/io/IOException", "setOutputFile failed.");
android_media_MediaPlayer.cpp 156 // If exception is NULL and opStatus is not OK, this method sends an error
158 // opStatus is not OK, this method throws the given exception to the client
160 static void process_media_player_call(JNIEnv *env, jobject thiz, status_t opStatus, const char* exception, const char *message)
163 if (opStatus != (status_t) OK) {
165 if (mp != 0) mp->notify(MEDIA_ERROR, opStatus, 0);
168 if ( opStatus == (status_t) INVALID_OPERATION ) {
170 } else if ( opStatus == (status_t) PERMISSION_DENIED ) {
172 } else if ( opStatus != (status_t) OK ) {
179 sprintf(msg, "%s: status=0x%X", message, opStatus);
225 status_t opStatus
    [all...]
  /external/llvm/include/llvm/ADT/
APFloat.h 166 enum opStatus {
294 opStatus add(const APFloat &, roundingMode);
295 opStatus subtract(const APFloat &, roundingMode);
296 opStatus multiply(const APFloat &, roundingMode);
297 opStatus divide(const APFloat &, roundingMode);
299 opStatus remainder(const APFloat &);
301 opStatus mod(const APFloat &, roundingMode);
302 opStatus fusedMultiplyAdd(const APFloat &, const APFloat &, roundingMode);
303 opStatus roundToIntegral(roundingMode);
305 opStatus next(bool nextDown)
    [all...]

Completed in 76 milliseconds