Searched refs:condition (Results 1 - 21 of 21) sorted by relevance

/frameworks/av/include/media/stagefright/foundation/
H A DADebug.h32 #define CHECK(condition) \
34 !(condition), \
37 " CHECK(" #condition ") failed.")
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
H A DProcessErrorsTest.java206 // condition. if the list is empty (null) then "we're good".
280 String condition;
281 switch (entry.condition) {
283 condition = "a CRASH";
286 condition = "an ANR";
289 condition = "an unknown error";
294 condition, entry.shortMsg));
295 if (entry.condition == ActivityManager.ProcessErrorStateInfo.CRASHED) {
343 return (info.condition == peOther.info.condition)
[all...]
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DActivityManagerTest.java66 // TODO force another process into an error condition. How?
122 assertTrue((info.condition == ActivityManager.ProcessErrorStateInfo.CRASHED) ||
123 (info.condition == ActivityManager.ProcessErrorStateInfo.NOT_RESPONDING));
/frameworks/base/media/jni/mediaeditor/
H A DVideoEditorJava.cpp31 bool condition,
39 // Check if the condition is true.
40 if (condition)
60 bool condition,
71 // Check if the condition is true.
72 if (condition)
95 bool condition,
104 // Check if the condition is true.
105 if (condition)
28 videoEditJava_checkAndThrowIllegalArgumentExceptionFunc( bool* pResult, JNIEnv* pEnv, bool condition, const char* pMessage, const char* pFile, int lineNo) argument
57 videoEditJava_checkAndThrowRuntimeExceptionFunc( bool* pResult, JNIEnv* pEnv, bool condition, M4OSA_ERR result, const char* pFile, int lineNo ) argument
92 videoEditJava_checkAndThrowIllegalStateExceptionFunc( bool* pResult, JNIEnv* pEnv, bool condition, const char* pMessage, const char* pFile, int lineNo ) argument
H A DVideoEditorJava.h370 bool condition,
380 bool condition,
390 bool condition,
/frameworks/base/core/java/android/os/
H A DRecoverySystem.java348 final ConditionVariable condition = new ConditionVariable();
356 condition.open();
361 condition.block();
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
H A DarmCOMM.h82 #define armRetArgErrIf(condition, code) if(condition) { return (code); }
83 #define armRetDataErrIf(condition, code) if(condition) { return (code); }
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
H A DarmCOMM.h82 #define armRetArgErrIf(condition, code) if(condition) { return (code); }
83 #define armRetDataErrIf(condition, code) if(condition) { return (code); }
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/api/
H A DarmCOMM.h82 #define armRetArgErrIf(condition, code) if(condition) { return (code); }
83 #define armRetDataErrIf(condition, code) if(condition) { return (code); }
/frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
H A DVariableSpeed.java385 private void check(boolean condition, String exception) { argument
386 if (!condition) {
/frameworks/base/tools/aidl/
H A DAST.h208 Expression* condition; member in struct:Ternary
213 Ternary(Expression* condition, Expression* ifpart, Expression* elsepart);
H A DAST.cpp445 :condition(NULL),
452 :condition(a),
466 this->condition->Write(to);
/frameworks/native/opengl/include/EGL/
H A Deglext.h203 EGLSyncNV eglCreateFenceSyncNV (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list);
210 typedef EGLSyncNV (EGLAPIENTRYP PFNEGLCREATEFENCESYNCNVPROC) (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list);
/frameworks/base/core/java/android/app/
H A DActivityManager.java1246 * Information you can retrieve about any processes that are in an error condition.
1257 * The condition that the process is in.
1259 public int condition; field in class:ActivityManager.ProcessErrorStateInfo
1284 * A short message describing the error condition.
1289 * A long message describing the error condition.
1311 dest.writeInt(condition);
1322 condition = source.readInt();
1348 * Returns a list of any processes that are currently in an error condition. The result
/frameworks/av/media/libstagefright/omx/tests/
H A DOMXHarness.cpp169 #define EXPECT(condition, info) \
170 if (!(condition)) { \
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java239 * used internally to synchronize inet condition reports
241 * arg2 = condition (0 bad, 100 good)
246 * used internally to mark the end of inet condition hold periods
317 // used in DBG mode to track inet condition reports
2658 pw.println("Inet condition reports:");
2771 int condition = msg.arg2;
2772 handleInetConditionChange(netType, condition);
2979 private void handleInetConditionChange(int netType, int condition) { argument
2991 netType + ", condition=" + condition
[all...]
/frameworks/native/opengl/include/GLES/
H A Dglext.h1089 GL_API void GL_APIENTRY glSetFenceNV (GLuint fence, GLenum condition);
1097 typedef void (GL_APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition);
/frameworks/native/opengl/include/GLES2/
H A Dgl2ext.h1272 GL_APICALL void GL_APIENTRY glSetFenceNV (GLuint fence, GLenum condition);
1280 typedef void (GL_APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.h269 void GLTrace_glSetFenceNV(GLuint fence, GLenum condition);
H A Dgltrace_api.cpp10288 void GLTrace_glSetFenceNV(GLuint fence, GLenum condition) { argument
10300 // copy argument condition
10304 arg_condition->add_intvalue((int)condition);
10309 glContext->hooks->gl.glSetFenceNV(fence, condition);
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java7959 * @param condition Crashing, Application Not Responding, etc. Values are defined in
7969 int condition, String activity, String shortMsg, String longMsg, String stackTrace) {
7972 report.condition = condition;
7968 generateProcessError(ProcessRecord app, int condition, String activity, String shortMsg, String longMsg, String stackTrace) argument

Completed in 6965 milliseconds