Searched defs:op (Results 1 - 25 of 60) sorted by relevance

123

/frameworks/native/libs/binder/
H A DIAppOpsCallback.cpp40 virtual void opChanged(int32_t op, const String16& packageName) { argument
43 data.writeInt32(op);
59 int32_t op = data.readInt32(); local
61 opChanged(op, packageName);
H A DAppOpsManager.cpp68 int32_t AppOpsManager::checkOp(int32_t op, int32_t uid, const String16& callingPackage) argument
71 return service != NULL ? service->checkOperation(op, uid, callingPackage) : MODE_IGNORED;
74 int32_t AppOpsManager::noteOp(int32_t op, int32_t uid, const String16& callingPackage) { argument
76 return service != NULL ? service->noteOperation(op, uid, callingPackage) : MODE_IGNORED;
79 int32_t AppOpsManager::startOp(int32_t op, int32_t uid, const String16& callingPackage) { argument
81 return service != NULL ? service->startOperation(getToken(service), op, uid, callingPackage)
85 void AppOpsManager::finishOp(int32_t op, int32_t uid, const String16& callingPackage) { argument
88 service->finishOperation(getToken(service), op, uid, callingPackage); local
92 void AppOpsManager::startWatchingMode(int32_t op, const String16& packageName, argument
96 service->startWatchingMode(op, packageNam
[all...]
H A DIAppOpsService.cpp89 virtual void startWatchingMode(int32_t op, const String16& packageName, argument
93 data.writeInt32(op);
169 int32_t op = data.readInt32(); local
172 startWatchingMode(op, packageName, callback);
/frameworks/native/opengl/tests/lib/
H A DglTestLib.cpp48 void glTestCheckEglError(const char* op, EGLBoolean returnVal) argument
51 testPrintE("%s() returned %d", op, returnVal);
57 op, EGLUtils::strerror(error), error);
61 void glTestCheckGlError(const char* op) argument
65 testPrintE("after %s() glError (0x%x)", op, error);
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DRunResult.java31 RunResult(TestService.TestRunner op) { argument
32 name = op.getName();
33 fgLongName = op.getForegroundLongName();
34 bgLongName = op.getBackgroundLongName();
35 fgTime = op.getForegroundTime();
36 fgOps = op.getForegroundOps();
37 bgTime = op.getBackgroundTime();
38 bgOps = op.getBackgroundOps();
/frameworks/native/opengl/tests/gl_perf/
H A Dgl2_perf.cpp35 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { argument
37 fprintf(stderr, "%s() returned %d\n", op, returnVal);
42 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
47 static void checkGlError(const char* op) { argument
50 fprintf(stderr, "after %s() glError (0x%x)\n", op, error);
H A Dfill_common.cpp26 static void checkGlError(const char* op) { argument
29 ALOGE("after %s() glError (0x%x)\n", op, error);
/frameworks/native/opengl/tests/gl2_java/src/com/android/gl2java/
H A DGL2JavaView.java142 private void checkGlError(String op) { argument
145 Log.e(TAG, op + ": glError " + error);
146 throw new RuntimeException(op + ": glError " + error);
/frameworks/rs/driver/
H A DrsdGL.cpp52 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { argument
77 fprintf(stderr, "%s() returned %d\n", op, returnVal);
82 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
/frameworks/base/libs/hwui/
H A DSnapshot.cpp59 mClipRegionRoot.op(*s->clipRegion, SkRegion::kUnion_Op);
98 bool Snapshot::clipRegionOp(float left, float top, float right, float bottom, SkRegion::Op op) { argument
101 clipRegion->op(tmp, op);
106 bool Snapshot::clipRegionTransformed(const SkRegion& region, SkRegion::Op op) { argument
108 clipRegion->op(region, op);
114 bool Snapshot::clip(float left, float top, float right, float bottom, SkRegion::Op op) { argument
117 return clipTransformed(r, op);
120 bool Snapshot::clipTransformed(const Rect& r, SkRegion::Op op) { argument
[all...]
H A DDeferredDisplayList.h56 // global op bounds, mapped by mMatrix to be in screen space coordinates, clipped
72 : op(NULL), state(NULL) {}
74 : op(newOp), state(newState) {}
76 : op(other.op), state(other.state) {}
77 DrawOp* op; member in class:android::uirenderer::OpStatePair
111 void addClip(OpenGLRenderer& renderer, ClipOp* op);
112 void addSaveLayer(OpenGLRenderer& renderer, SaveLayerOp* op, int newSaveCount);
113 void addSave(OpenGLRenderer& renderer, SaveOp* op, int newSaveCount);
114 void addRestoreToCount(OpenGLRenderer& renderer, StateOp* op, in
[all...]
H A DDisplayList.cpp540 DisplayListOp *op = mDisplayListData->displayListOps[i]; local
543 op->output(level + 1);
546 logBuffer.writeCommand(level, op->name());
547 handler(op, saveCount, mClipToBounds);
/frameworks/base/tools/obbtool/
H A DMain.cpp252 if (strncmp(op, name, opsize)) { \
253 fprintf(stderr, "ERROR: unknown function '%s'!\n\n", op); \
259 const char* op = argv[optind++]; local
260 const int opsize = strlen(op);
270 switch (op[0]) {
288 fprintf(stderr, "ERROR: unknown command '%s'!\n\n", op);
/frameworks/native/opengl/tests/gl2_jni/jni/
H A Dgl_code.cpp20 static void checkGlError(const char* op) { argument
23 ALOGI("after %s() glError (0x%x)\n", op, error);
/frameworks/native/opengl/tests/gldual/jni/
H A Dgl_code.cpp20 static void checkGlError(const char* op) { argument
23 ALOGI("after %s() glError (0x%x)\n", op, error);
/frameworks/base/core/java/android/util/
H A DBase64.java73 public int op; field in class:Base64.Coder
165 if (decoder.op == decoder.output.length) {
171 byte[] temp = new byte[decoder.op];
172 System.arraycopy(decoder.output, 0, temp, 0, decoder.op);
276 int op = 0;
301 output[op+2] = (byte) value;
302 output[op+1] = (byte) (value >> 8);
303 output[op] = (byte) (value >> 16);
304 op += 3;
345 output[op
[all...]
/frameworks/base/media/mca/filterfw/native/core/
H A Dgl_env.cpp299 bool GLEnv::CheckGLError(const std::string& op) { argument
303 op.c_str(),
310 bool GLEnv::CheckEGLError(const std::string& op) { argument
316 op.c_str(),
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DRegion_Delegate.java372 int left, int top, int right, int bottom, int op) {
379 new Rectangle2D.Float(left, top, right - left, bottom - top), op);
390 /*package*/ static boolean nativeOp(int native_dst, Rect rect, int native_region, int op) { argument
397 new Rectangle2D.Float(rect.left, rect.top, rect.width(), rect.height()), op);
409 int native_region1, int native_region2, int op) {
425 dstRegion.mArea = combineShapes(region1.mArea, region2.mArea, op);
371 nativeOp(int native_dst, int left, int top, int right, int bottom, int op) argument
408 nativeOp(int native_dst, int native_region1, int native_region2, int op) argument
/frameworks/native/include/private/ui/
H A DRegionHelper.h35 * value is computed as 0b101 op 0b110
69 inline region_operator(int op, const region& lhs, const region& rhs) argument
70 : op_mask(op), spanner(lhs, rhs)
/frameworks/native/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp47 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { argument
49 fprintf(stderr, "%s() returned %d\n", op, returnVal);
54 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
59 static void checkGlError(const char* op) { argument
62 fprintf(stderr, "after %s() glError (0x%x)\n", op, error);
/frameworks/native/opengl/tests/gl_basic/
H A Dgl_basic.cpp148 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { argument
150 fprintf(stderr, "%s() returned %d\n", op, returnVal);
155 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
/frameworks/native/opengl/tests/gl_yuvtex/
H A Dgl_yuvtex.cpp49 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { argument
51 fprintf(stderr, "%s() returned %d\n", op, returnVal);
56 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
61 static void checkGlError(const char* op) { argument
64 fprintf(stderr, "after %s() glError (0x%x)\n", op, error);
/frameworks/native/opengl/tests/testLatency/src/com/android/testlatency/
H A DTestLatencyView.java216 private void checkGlError(String op) { argument
219 Log.e(TAG, op + ": glError " + error);
220 throw new RuntimeException(op + ": glError " + error);
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicColorMatrix.cpp340 uint32_t op = (condition << 28); local
341 op |= 0xa << 24; // branch
342 op |= 0xffffff & off;
343 ((uint32_t *)buf)[0] = op;
352 uint32_t op = ((vd & 0xf) << 12) | (((vd & 0x10) >> 4) << 22);
353 op |= (vm & 0xf) | (((vm & 0x10) >> 4) << 5);
354 op |= ((vn & 0xf) << 16) | (((vn & 0x10) >> 4) << 7);
355 return op;
360 uint32_t op = 0xf2900240 | encodeSIMDRegs(dest_q << 1, src_d1, src_d2 | (src_d2_s << 3));
361 ((uint32_t *)buf)[0] = op;
[all...]
/frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
H A DMyGLSurfaceView.java281 private void checkGlError(String op) { argument
284 Log.e(TAG, op + ": glError " + error);
285 throw new RuntimeException(op + ": glError " + error);

Completed in 3949 milliseconds

123