Searched defs:ops (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/tools/preload/
H A DLoadedClass.java114 private void addProcessNames(List<Operation> ops, Set<String> names) { argument
115 for (Operation operation : ops) {
/frameworks/base/tests/CoreTests/android/core/
H A DSSLSocketTest.java933 assertEquals(smallCacheOps, fakeCache.ops);
953 assertEquals(bigCacheOps, fakeCache.ops);
962 assertEquals(bigCacheOps, fakeCache.ops);
985 List<String> ops = new ArrayList<String>(); field in class:SSLSocketTest.FakeClientSessionCache
989 ops.add("get " + host);
996 ops.add("put " + host);
1035 assertEquals(expected, cacheProxy.ops);
1053 assertEquals(expected, cacheProxy.ops);
1072 final List<String> ops = new ArrayList<String>(); field in class:SSLSocketTest.ClientSessionCacheProxy
1080 ops
[all...]
/frameworks/base/services/java/com/android/server/
H A DAppOpsService.java207 Ops ops = it.next();
210 curUid = mContext.getPackageManager().getPackageUid(ops.packageName,
211 UserHandle.getUserId(ops.uid));
215 if (curUid != ops.uid) {
216 Slog.i(TAG, "Pruning old package " + ops.packageName
217 + "/" + ops.uid + ": new uid=" + curUid);
256 Slog.w(TAG, "Writing app ops before shutdown...");
269 private ArrayList<AppOpsManager.OpEntry> collectOps(Ops pkgOps, int[] ops) { argument
271 if (ops == null) {
279 for (int j=0; j<ops
294 getPackagesForOps(int[] ops) argument
318 getOpsForPackage(int uid, String packageName, int[] ops) argument
762 getOpLocked(Ops ops, int code, boolean edit) argument
[all...]
/frameworks/base/core/java/android/app/
H A DAppOpsManager.java45 * <p>App ops allows callers to:</p>
459 * app ops that are under strong control of some part of the
748 * @param ops The set of operations you are interested in, or null if you want all of them.
751 public List<AppOpsManager.PackageOps> getPackagesForOps(int[] ops) { argument
753 return mService.getPackagesForOps(ops);
764 * @param ops The set of operations you are interested in, or null if you want all of them.
767 public List<AppOpsManager.PackageOps> getOpsForPackage(int uid, String packageName, int[] ops) { argument
769 return mService.getOpsForPackage(uid, packageName, ops);
/frameworks/av/media/libeffects/preprocessing/
H A DPreProcessing.cpp90 const preproc_ops_t *ops; // effect ops table member in struct:preproc_effect_s
646 effect->ops->disable(effect);
659 status = effect->ops->create(effect);
678 effect->ops->disable(effect);
699 effect->ops->enable(effect);
722 effect->ops = sPreProcOps[procId];
1357 if (effect->ops->init) {
1358 effect->ops->init(effect);
1432 if (effect->ops
[all...]
/frameworks/base/libs/hwui/
H A DDisplayListOp.h140 * Currently guarantees certain similarities between ops (see MergingDrawBatch::canMergeWith),
145 const Vector<OpStatePair>& ops, const Rect& bounds) {
147 for (unsigned int i = 0; i < ops.size(); i++) {
148 renderer.restoreDisplayState(*(ops[i].state), true);
149 status |= ops[i].op->applyDraw(renderer, dirty);
767 const Vector<OpStatePair>& ops, const Rect& bounds) {
768 const DeferredDisplayState& firstState = *(ops[0].state);
771 TextureVertex vertices[6 * ops.size()];
779 for (unsigned int i = 0; i < ops.size(); i++) {
780 const DeferredDisplayState& state = *(ops[
144 multiDraw(OpenGLRenderer& renderer, Rect& dirty, const Vector<OpStatePair>& ops, const Rect& bounds) argument
766 multiDraw(OpenGLRenderer& renderer, Rect& dirty, const Vector<OpStatePair>& ops, const Rect& bounds) argument
988 multiDraw(OpenGLRenderer& renderer, Rect& dirty, const Vector<OpStatePair>& ops, const Rect& bounds) argument
1463 multiDraw(OpenGLRenderer& renderer, Rect& dirty, const Vector<OpStatePair>& ops, const Rect& bounds) argument
[all...]
/frameworks/native/opengl/libagl/
H A Dcontext.h419 uint32_t ops; member in struct:android::gl::transform_t
451 uint8_t *ops; member in struct:android::gl::matrix_stack_t
466 uint32_t top_ops() const { return ops[depth]; }
468 return !(ops[depth] & ~(OP_TRANSLATE|OP_UNIFORM_SCALE|OP_ROTATE));

Completed in 1379 milliseconds