HomeSort by relevance Sort by last modified time
    Searched refs:ops (Results 26 - 50 of 485) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
smp.h 27 #include <asm/smp-ops.h>
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
smp.h 27 #include <asm/smp-ops.h>
  /system/extras/libublock/include/ublock/
ublock.h 43 int ublock_init(struct ublock_ctx **ub, struct ublock_ops *ops, uint64_t size);
54 * Runs a loop waiting for ublock requests and calling the ops callbacks.
62 * Stops ublock_run, if it is running. Should be called from one of the ops
  /external/chromium/chrome/browser/ui/views/tab_contents/
tab_contents_drag_win.h 36 WebKit::WebDragOperationsMask ops,
57 WebKit::WebDragOperationsMask ops,
65 WebKit::WebDragOperationsMask ops,
native_tab_contents_view.h 46 WebKit::WebDragOperationsMask ops,
  /external/regex-re2/re2/testing/
exhaustive_tester.h 29 const vector<string>& ops,
34 : RegexpGenerator(maxatoms, maxops, alphabet, ops),
72 const vector<string>& ops,
  /device/lge/mako/camera/QCamera/stack/mm-jpeg-interface/src/
mm_jpeg_interface.c 147 uint32_t jpeg_open(mm_jpeg_ops_t *ops)
181 if (NULL != ops) {
182 /* fill in ops tbl if ptr not NULL */
183 ops->start_job = mm_jpeg_intf_start_job;
184 ops->abort_job = mm_jpeg_intf_abort_job;
185 //ops->abort_job_all = mm_jpeg_intf_close,
186 ops->close = mm_jpeg_intf_close;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
vx_core.h 172 struct snd_vx_ops *ops; member in struct:vx_core
220 struct snd_vx_ops *ops, int extra_size);
238 snd_assert(chip->ops->test_and_ack, return -ENXIO);
239 return chip->ops->test_and_ack(chip);
244 snd_assert(chip->ops->validate_irq, return);
245 chip->ops->validate_irq(chip, enable);
250 snd_assert(chip->ops->in8, return 0);
251 return chip->ops->in8(chip, reg);
256 snd_assert(chip->ops->in32, return 0);
257 return chip->ops->in32(chip, reg)
    [all...]
seq_instr.h 45 struct snd_seq_kinstr_ops *ops; /* operations */ member in struct:snd_seq_kinstr
103 int snd_seq_instr_event(struct snd_seq_kinstr_ops *ops,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
vx_core.h 172 struct snd_vx_ops *ops; member in struct:vx_core
220 struct snd_vx_ops *ops, int extra_size);
238 snd_assert(chip->ops->test_and_ack, return -ENXIO);
239 return chip->ops->test_and_ack(chip);
244 snd_assert(chip->ops->validate_irq, return);
245 chip->ops->validate_irq(chip, enable);
250 snd_assert(chip->ops->in8, return 0);
251 return chip->ops->in8(chip, reg);
256 snd_assert(chip->ops->in32, return 0);
257 return chip->ops->in32(chip, reg)
    [all...]
seq_instr.h 45 struct snd_seq_kinstr_ops *ops; /* operations */ member in struct:snd_seq_kinstr
103 int snd_seq_instr_event(struct snd_seq_kinstr_ops *ops,
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
AbstractSyncAdapter.java 217 ArrayList<ContentProviderOperation> ops)
221 if (!ops.isEmpty()) {
222 ContentProviderResult[] result = mContentResolver.applyBatch(authority, ops);
252 private ContentProviderResult[] applyBatch(String authority, ArrayList<Operation> ops,
255 if (ops.isEmpty()) {
259 for (Operation op: ops) {
277 // Not possible since we're building the ops ourselves
293 protected ContentProviderResult[] safeExecute(String authority, ArrayList<Operation> ops)
295 mService.userLog("Try to execute ", ops.size(), " CPO's for " + authority);
299 return applyBatch(authority, ops, 0)
    [all...]
  /frameworks/base/services/java/com/android/server/
AppOpsService.java 88 final SparseArray<HashMap<String, Ops>> mUidOps
89 = new SparseArray<HashMap<String, Ops>>();
91 public final static class Ops extends SparseArray<Op> {
95 public Ops(String _packageName, int _uid) {
158 HashMap<String, Ops> pkgs = mUidOps.valueAt(i);
159 Iterator<Ops> it = pkgs.values().iterator();
161 Ops ops = it.next(); local
164 curUid = mContext.getPackageManager().getPackageUid(ops.packageName,
165 UserHandle.getUserId(ops.uid))
295 Ops ops = getOpsLocked(uid, packageName, false); local
494 Ops ops = getOpsLocked(uid, packageName, true); local
527 Ops ops = getOpsLocked(uid, packageName, true); local
611 Ops ops = pkgOps.get(packageName); local
660 Ops ops = getOpsLocked(uid, packageName, edit); local
805 Ops ops = pkgOps.get(pkgName); local
851 List<AppOpsManager.OpEntry> ops = pkg.getOps(); local
    [all...]
  /external/qemu/audio/
wavcapture.c 96 struct audio_capture_ops ops; local
119 ops.notify = wav_notify;
120 ops.capture = wav_capture;
121 ops.destroy = wav_destroy;
148 cap = AUD_add_capture (&as, &ops, wav);
159 s->ops = wav_capture_ops;
  /external/linux-tools-perf/util/
session.c 138 struct perf_event_ops *ops)
179 if (ops && ops->ordering_requires_timestamps &&
180 ops->ordered_samples && !self->sample_id_all) {
182 ops->ordered_samples = false;
319 struct perf_event_ops *ops __used)
327 struct perf_event_ops *ops);
493 struct perf_event_ops *ops,
497 struct perf_event_ops *ops)
507 if (!ops->ordered_samples || !limit
    [all...]
  /hardware/libhardware/modules/camera/
Camera.h 46 void getMetadataVendorTagOps(vendor_tag_query_ops_t *ops);
Camera.cpp 54 mDevice.ops = const_cast<camera3_device_ops_t*>(&sOps);
148 void Camera::getMetadataVendorTagOps(vendor_tag_query_ops_t *ops)
150 ALOGV("%s:%d: ops=%p", __func__, mId, ops);
151 // TODO: return vendor tag ops
198 vendor_tag_query_ops_t *ops)
200 camdev_to_camera(dev)->getMetadataVendorTagOps(ops);
  /libcore/luni/src/main/java/java/nio/channels/
SelectableChannel.java 150 * but its {@link SelectionKey interest set} is updated to {@code ops} and
162 * @param ops
170 * if {@code ops} is not supported by this channel.
179 public abstract SelectionKey register(Selector sel, int ops, Object att)
  /device/lge/mako/camera/QCamera/stack/mm-camera-test/src/
mm_qcamera_rdi.c 59 //pme->cam->ops->get_parm(pme->cam->camera_handle,MM_CAMERA_PARM_DIMENSION, &dim);
111 if (MM_CAMERA_OK != pme->cam->ops->qbuf(pme->cam->camera_handle,pme->ch_id,frame)) {
135 //pme->cam->ops->set_parm(pme->cam->camera_handle,MM_CAMERA_PARM_CH_INTERFACE, &value);
136 //pme->cam->ops->get_parm(pme->cam->camera_handle,MM_CAMERA_PARM_CH_INTERFACE, &rdi_mode);
138 pme->stream[MM_CAMERA_RDI].id = pme->cam->ops->add_stream(pme->cam->camera_handle,pme->ch_id,
153 if (MM_CAMERA_OK != (rc = pme->cam->ops->config_stream(pme->cam->camera_handle,pme->ch_id,pme->stream[MM_CAMERA_RDI].id,
160 pme->stream[MM_CAMERA_PREVIEW].id = pme->cam->ops->add_stream(pme->cam->camera_handle,pme->ch_id,
176 if (MM_CAMERA_OK != (rc = pme->cam->ops->config_stream(pme->cam->camera_handle,pme->ch_id,pme->stream[MM_CAMERA_PREVIEW].id,
209 if (MM_CAMERA_OK != (rc = pme->cam->ops->start_streams(pme->cam->camera_handle,pme->ch_id,num_of_streams,&stream))) {
265 if (MM_CAMERA_OK != (rc = pme->cam->ops->stop_streams(pme->cam->camera_handle,pme->ch_id,num_of_streams,&stream)))
    [all...]
  /hardware/msm7k/librpc/
Android.mk 5 LOCAL_SRC_FILES:= xdr.c rpc.c svc.c clnt.c ops.c svc_clnt_common.c
  /system/core/libsparse/
output_file.c 90 struct output_file_ops *ops; member in struct:output_file
364 ret = out->ops->write(out, &chunk_header, sizeof(chunk_header));
390 ret = out->ops->write(out, &chunk_header, sizeof(chunk_header));
394 ret = out->ops->write(out, &fill_val, sizeof(fill_val));
426 ret = out->ops->write(out, &chunk_header, sizeof(chunk_header));
430 ret = out->ops->write(out, data, len);
434 ret = out->ops->write(out, out->zero_buf, zero_len);
462 ret = out->ops->write(out, &chunk_header, sizeof(chunk_header));
466 out->ops->write(out, &out->crc32, 4);
490 ret = out->ops->write(out, data, len)
    [all...]
  /external/oprofile/events/i386/atom/
unit_masks 22 0x01 s Floating point computational micro-ops executed
23 0x81 ar Floating point computational micro-ops retired
52 0x00 s SIMD micro-ops executed (excluding stores)
53 0x80 ar SIMD micro-ops retired (excluding stores)
55 0x00 s SIMD saturated arithmetic micro-ops executed
56 0x80 ar SIMD saturated arithmetic micro-ops retired
60 0x02 s SIMD packed shift micro-ops executed
61 0x82 ar SIMD packed shift micro-ops retired
62 0x04 s SIMD pack micro-ops executed
63 0x84 ar SIMD pack micro-ops retire
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_StreamItemsTest.java 113 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); local
115 ops.add(ContentProviderOperation.newInsert(RawContacts.CONTENT_URI)
120 ops.add(ContentProviderOperation.newInsert(StreamItems.CONTENT_URI)
129 ContentProviderResult[] results = mResolver.applyBatch(ContactsContract.AUTHORITY, ops);
145 ops.clear();
146 ops.add(ContentProviderOperation.newUpdate(streamItemUri)
155 results = mResolver.applyBatch(ContactsContract.AUTHORITY, ops);
  /external/icu4c/tools/ctestfw/
uperf.cpp 352 long ops; local
370 ops = testFunction->getOperationsPerIteration();
371 if (ops < 1) {
436 fprintf(stdout, "= %s end: %f loops: %i operations: %li \n", name, t, (int)loops, ops);
438 fprintf(stdout, "= %s end: %f loops: %i operations: %li events: %li\n", name, t, (int)loops, ops, events);
442 fprintf(stdout,"= %s end %f %i %li\n", name, t, (int)loops, ops);
444 fprintf(stdout,"= %s end %f %i %li %li\n", name, t, (int)loops, ops, events);
450 if (loops == 0 || ops == 0) {
455 name, avg_t, (int)loops, (avg_t*1E9)/(loops*ops));
457 name, min_t, (int)loops, (min_t*1E9)/(loops*ops));
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/event/
EditEventHelperTest.java 297 private void addTestAttendees(ArrayList<ContentProviderOperation> ops,
318 ops.add(b.build());
338 ops.add(b.build());
358 ops.add(b.build());
401 private boolean verifySaveEventNewEvent(ArrayList<ContentProviderOperation> ops) {
420 assertEquals(expectedOps, ops);
447 private boolean verifySaveEventModifyRecurring(ArrayList<ContentProviderOperation> ops) {
466 assertEquals(expectedOps, ops);
497 private boolean verifySaveEventRecurringToNonRecurring(ArrayList<ContentProviderOperation> ops)
521 assertEquals(expectedOps, ops);
1031 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); local
1107 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); local
1161 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); local
    [all...]

Completed in 1148 milliseconds

12 3 4 5 6 7 8 91011>>