Searched refs:ops (Results 1 - 17 of 17) sorted by relevance

/frameworks/av/services/camera/libcameraservice/
H A DCameraHardwareInterface.h110 if (mDevice->ops->set_preview_window) {
115 return mDevice->ops->set_preview_window(mDevice,
134 if (mDevice->ops->set_callbacks) {
135 mDevice->ops->set_callbacks(mDevice,
156 if (mDevice->ops->enable_msg_type)
157 mDevice->ops->enable_msg_type(mDevice, msgType);
173 if (mDevice->ops->disable_msg_type)
174 mDevice->ops->disable_msg_type(mDevice, msgType);
185 if (mDevice->ops->msg_type_enabled)
186 return mDevice->ops
[all...]
H A DCamera2Device.cpp114 res = device->ops->get_metadata_vendor_tag_ops(device, &mVendorTagOps);
116 ALOGE("%s: Camera %d: Unable to retrieve tag ops from device: %s (%d)",
123 ALOGE("%s: Camera %d: Unable to set tag ops: %s (%d)",
128 res = device->ops->set_notify_callback(device, notificationCallback,
149 int inProgressCount = mHal2Device->ops->get_in_progress_count(mHal2Device);
204 res = mHal2Device->ops->dump(mHal2Device, fd);
408 err = mHal2Device->ops->construct_default_request(
424 while (mHal2Device->ops->get_in_progress_count(mHal2Device) > 0) {
429 totalTime, mHal2Device->ops->get_in_progress_count(mHal2Device));
440 res = mHal2Device->ops
[all...]
H A DCamera3Device.cpp131 res = device->ops->initialize(device, this);
143 device->ops->get_metadata_vendor_tag_ops(device, &mVendorTagOps);
148 SET_ERR_L("Unable to set tag ops: %s (%d)",
280 mHal3Device->ops->dump(mHal3Device, fd);
759 rawRequest = mHal3Device->ops->construct_default_request_settings(
1076 res = mHal3Device->ops->configure_streams(mHal3Device, &config);
1630 res = mHal3Device->ops->process_capture_request(mHal3Device, &request);
/frameworks/base/core/java/com/android/internal/app/
H A DIAppOpsService.aidl33 List<AppOpsManager.PackageOps> getPackagesForOps(in int[] ops);
34 List<AppOpsManager.PackageOps> getOpsForPackage(int uid, String packageName, in int[] ops);
/frameworks/base/services/java/com/android/server/
H A DAppOpsService.java159 Ops ops = it.next();
162 curUid = mContext.getPackageManager().getPackageUid(ops.packageName,
163 UserHandle.getUserId(ops.uid));
167 if (curUid != ops.uid) {
168 Slog.i(TAG, "Pruning old package " + ops.packageName
169 + "/" + ops.uid + ": new uid=" + curUid);
208 Slog.w(TAG, "Writing app ops before shutdown...");
221 private ArrayList<AppOpsManager.OpEntry> collectOps(Ops pkgOps, int[] ops) { argument
223 if (ops == null) {
231 for (int j=0; j<ops
246 getPackagesForOps(int[] ops) argument
270 getOpsForPackage(int uid, String packageName, int[] ops) argument
595 getOpLocked(Ops ops, int code, boolean edit) argument
[all...]
/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/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/core/java/android/app/
H A DAppOpsManager.java393 * @param ops The set of operations you are interested in, or null if you want all of them.
395 public List<AppOpsManager.PackageOps> getPackagesForOps(int[] ops) { argument
397 return mService.getPackagesForOps(ops);
408 * @param ops The set of operations you are interested in, or null if you want all of them.
410 public List<AppOpsManager.PackageOps> getOpsForPackage(int uid, String packageName, int[] ops) { argument
412 return mService.getOpsForPackage(uid, packageName, ops);
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp175 ops = OP_IDENTITY;
198 ops = OP_ALL;
212 ops = OP_ALL;
388 ops = new uint8_t[depth];
397 delete [] ops;
403 ops[depth] = OP_IDENTITY;
410 ops[depth] = OP_ALL; // TODO: we should look at the matrix
416 ops[depth] = OP_ALL; // TODO: we should look at the matrix
422 ops[depth] = OP_ALL; // TODO: we should look at the matrix
428 ops[dept
[all...]
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));
H A Dprimitives.cpp417 if (ggl_unlikely(tr.ops)) {
/frameworks/base/libs/hwui/
H A DDisplayListOp.h161 * Currently guarantees certain similarities between ops (see MergingDrawBatch::canMergeWith),
166 const Vector<DrawOp*>& ops, const Rect& bounds) {
168 for (unsigned int i = 0; i < ops.size(); i++) {
169 renderer.restoreDisplayState(ops[i]->state);
170 status |= ops[i]->applyDraw(renderer, dirty);
746 const Vector<DrawOp*>& ops, const Rect& bounds) {
748 renderer.setFullScreenClip(); // ensure merged ops aren't clipped
749 TextureVertex vertices[6 * ops.size()];
758 for (unsigned int i = 0; i < ops.size(); i++) {
759 const Rect& opBounds = ops[
165 multiDraw(OpenGLRenderer& renderer, Rect& dirty, const Vector<DrawOp*>& ops, const Rect& bounds) argument
745 multiDraw(OpenGLRenderer& renderer, Rect& dirty, const Vector<DrawOp*>& ops, const Rect& bounds) argument
1318 multiDraw(OpenGLRenderer& renderer, Rect& dirty, const Vector<DrawOp*>& ops, const Rect& bounds) argument
[all...]
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DTestService.java293 int ops = 0;
296 ops++;
299 mBackgroundOps = ops * mBackgroundOp.getOpsPerRun();
306 int ops = 0;
309 ops++;
312 mForegroundOps = ops * mForegroundOp.getOpsPerRun();
/frameworks/base/docs/html/training/
H A Dtraining_toc.cs404 <a href="<?cs var:toroot ?>training/basics/network-ops/index.html"
411 <li><a href="<?cs var:toroot ?>training/basics/network-ops/connecting.html">
415 <li><a href="<?cs var:toroot ?>training/basics/network-ops/managing.html">
419 <li><a href="<?cs var:toroot ?>training/basics/network-ops/xml.html">
/frameworks/av/services/camera/libcameraservice/camera3/
H A DCamera3Stream.cpp315 res = hal3Device->ops->register_stream_buffers(hal3Device,
/frameworks/base/services/java/com/android/server/content/
H A DSyncStorageEngine.java1232 ArrayList<SyncStatusInfo> ops = new ArrayList<SyncStatusInfo>(N);
1234 ops.add(mSyncStatus.valueAt(i));
1236 return ops;
2062 + version + "; dropping all ops");
2117 * Write all currently pending ops to the pending ops file.
2150 * Append the given operation to the pending ops file; if unable to,
2151 * write all pending ops.

Completed in 1147 milliseconds