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

12

/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/testing/app-tests/AppLaunchTest/src/com/android/applaunchtest/
H A DAppLaunchTest.java224 String condition;
225 switch (entry.condition) {
227 condition = "a CRASH";
230 condition = "an ANR";
233 condition = "an unknown error";
238 condition, entry.shortMsg));
239 if (entry.condition == ActivityManager.ProcessErrorStateInfo.CRASHED) {
287 return (info.condition == peOther.info.condition)
308 code += info.condition;
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DIfElseFilter.java47 .addInputPort("condition", Signature.PORT_REQUIRED, FrameType.single(boolean.class))
57 FrameValue boolFrameValue = getConnectedInputPort("condition").pullFrame().asFrameValue();
58 boolean condition = (Boolean) boolFrameValue.getValue();
60 // If the condition is true, then we want to use the camera, else use the gallery
61 if (condition) {
/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.cpp33 bool condition,
41 // Check if the condition is true.
42 if (condition)
62 bool condition,
73 // Check if the condition is true.
74 if (condition)
97 bool condition,
106 // Check if the condition is true.
107 if (condition)
30 videoEditJava_checkAndThrowIllegalArgumentExceptionFunc( bool* pResult, JNIEnv* pEnv, bool condition, const char* pMessage, const char* pFile, int lineNo) argument
59 videoEditJava_checkAndThrowRuntimeExceptionFunc( bool* pResult, JNIEnv* pEnv, bool condition, M4OSA_ERR result, const char* pFile, int lineNo ) argument
94 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.java353 final ConditionVariable condition = new ConditionVariable();
361 condition.open();
366 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.h211 EGLAPI EGLSyncNV EGLAPIENTRY eglCreateFenceSyncNV (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list);
218 typedef EGLSyncNV (EGLAPIENTRYP PFNEGLCREATEFENCESYNCNVPROC) (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list);
440 /* No tokens/entry points, just relaxes an error condition */
/frameworks/base/core/java/android/app/
H A DActivityManager.java1480 * Information you can retrieve about any processes that are in an error condition.
1491 * The condition that the process is in.
1493 public int condition; field in class:ActivityManager.ProcessErrorStateInfo
1518 * A short message describing the error condition.
1523 * A long message describing the error condition.
1547 dest.writeInt(condition);
1558 condition = source.readInt();
1584 * 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/native/opengl/tools/glgen/specs/gles11/
H A DGLES30.spec77 GLsync glFenceSync ( GLenum condition, GLbitfield flags )
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicColorMatrix.cpp335 static uint8_t * addBranch(uint8_t *buf, const uint8_t *target, uint32_t condition) { argument
340 uint32_t op = (condition << 28);
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java303 * used internally to synchronize inet condition reports
305 * arg2 = condition (0 bad, 100 good)
310 * used internally to mark the end of inet condition hold periods
399 // used in DBG mode to track inet condition reports
2927 pw.println("Inet condition reports:");
3074 int condition = msg.arg2;
3075 handleInetConditionChange(netType, condition);
3288 private void handleInetConditionChange(int netType, int condition) { argument
3300 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/base/opengl/java/android/opengl/
H A DGLES30.java1378 // C function GLsync glFenceSync ( GLenum condition, GLbitfield flags )
1381 int condition,
1380 glFenceSync( int condition, int flags ) argument
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.h236 GLsync GLTrace_glFenceSync(GLenum condition, GLbitfield flags);
373 void GLTrace_glSetFenceNV(GLuint fence, GLenum condition);
/frameworks/native/opengl/include/GLES3/
H A Dgl3.h1022 GL_APICALL GLsync GL_APIENTRY glFenceSync (GLenum condition, GLbitfield flags);

Completed in 1289 milliseconds

12