Searched defs:id (Results 376 - 399 of 399) sorted by relevance

<<111213141516

/frameworks/base/core/java/android/widget/
H A DEditor.java2574 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
H A DAbsListView.java250 * and the value holds the last known position in the adapter for that id.
938 * @return A new array which contains the id of each checked item in the
1012 final long id = mAdapter.getItemId(position);
1014 position, id, value);
1048 public boolean performItemClick(View view, int position, long id) { argument
1074 position, id, checked);
1100 handled |= super.performItemClick(view, position, id);
2250 final long id = getItemIdAtPosition(position);
2267 return performItemClick(host, position, id);
2272 return performLongPress(host, position, id);
2711 createContextMenuInfo(View view, int position, long id) argument
5989 onItemCheckedStateChanged(ActionMode mode, int position, long id, boolean checked) argument
6035 onItemCheckedStateChanged(ActionMode mode, int position, long id, boolean checked) argument
[all...]
H A DTextView.java8004 static final int ID_SELECT_ALL = android.R.id.selectAll;
8005 static final int ID_CUT = android.R.id.cut;
8006 static final int ID_COPY = android.R.id.copy;
8007 static final int ID_PASTE = android.R.id.paste;
8011 * this will be one of {@link android.R.id#selectAll}, {@link android.R.id#cut},
8012 * {@link android.R.id#copy} or {@link android.R.id#paste}.
8016 public boolean onTextContextMenuItem(int id) { argument
8028 switch (id) {
[all...]
/frameworks/base/graphics/java/android/renderscript/
H A DRenderScript.java211 native void rsnObjDestroy(int con, int id); argument
212 synchronized void nObjDestroy(int id) { argument
217 rsnObjDestroy(mContext, id);
231 native void rsnElementGetNativeData(int con, int id, int[] elementData); argument
232 synchronized void nElementGetNativeData(int id, int[] elementData) { argument
234 rsnElementGetNativeData(mContext, id, elementData);
236 native void rsnElementGetSubElements(int con, int id, argument
238 synchronized void nElementGetSubElements(int id, int[] IDs, String[] names, int[] arraySizes) { argument
240 rsnElementGetSubElements(mContext, id, IDs, names, arraySizes);
248 native void rsnTypeGetNativeData(int con, int id, in argument
249 nTypeGetNativeData(int id, int[] typeData) argument
331 rsnAllocationData1D(int con, int id, int off, int mip, int count, int[] d, int sizeBytes) argument
332 nAllocationData1D(int id, int off, int mip, int count, int[] d, int sizeBytes) argument
336 rsnAllocationData1D(int con, int id, int off, int mip, int count, short[] d, int sizeBytes) argument
337 nAllocationData1D(int id, int off, int mip, int count, short[] d, int sizeBytes) argument
341 rsnAllocationData1D(int con, int id, int off, int mip, int count, byte[] d, int sizeBytes) argument
342 nAllocationData1D(int id, int off, int mip, int count, byte[] d, int sizeBytes) argument
346 rsnAllocationData1D(int con, int id, int off, int mip, int count, float[] d, int sizeBytes) argument
347 nAllocationData1D(int id, int off, int mip, int count, float[] d, int sizeBytes) argument
352 rsnAllocationElementData1D(int con, int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) argument
353 nAllocationElementData1D(int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) argument
378 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) argument
379 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) argument
383 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) argument
384 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) argument
388 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) argument
389 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) argument
393 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) argument
394 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) argument
398 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, Bitmap b) argument
399 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, Bitmap b) argument
404 rsnAllocationRead(int con, int id, byte[] d) argument
405 nAllocationRead(int id, byte[] d) argument
409 rsnAllocationRead(int con, int id, short[] d) argument
410 nAllocationRead(int id, short[] d) argument
414 rsnAllocationRead(int con, int id, int[] d) argument
415 nAllocationRead(int id, int[] d) argument
419 rsnAllocationRead(int con, int id, float[] d) argument
420 nAllocationRead(int id, float[] d) argument
424 rsnAllocationGetType(int con, int id) argument
425 nAllocationGetType(int id) argument
430 rsnAllocationResize1D(int con, int id, int dimX) argument
431 nAllocationResize1D(int id, int dimX) argument
435 rsnAllocationResize2D(int con, int id, int dimX, int dimY) argument
436 nAllocationResize2D(int id, int dimX, int dimY) argument
499 rsnScriptInvoke(int con, int id, int slot) argument
500 nScriptInvoke(int id, int slot) argument
504 rsnScriptForEach(int con, int id, int slot, int ain, int aout, byte[] params) argument
505 rsnScriptForEach(int con, int id, int slot, int ain, int aout) argument
506 nScriptForEach(int id, int slot, int ain, int aout, byte[] params) argument
514 rsnScriptInvokeV(int con, int id, int slot, byte[] params) argument
515 nScriptInvokeV(int id, int slot, byte[] params) argument
519 rsnScriptSetVarI(int con, int id, int slot, int val) argument
520 nScriptSetVarI(int id, int slot, int val) argument
524 rsnScriptSetVarJ(int con, int id, int slot, long val) argument
525 nScriptSetVarJ(int id, int slot, long val) argument
529 rsnScriptSetVarF(int con, int id, int slot, float val) argument
530 nScriptSetVarF(int id, int slot, float val) argument
534 rsnScriptSetVarD(int con, int id, int slot, double val) argument
535 nScriptSetVarD(int id, int slot, double val) argument
539 rsnScriptSetVarV(int con, int id, int slot, byte[] val) argument
540 nScriptSetVarV(int id, int slot, byte[] val) argument
544 rsnScriptSetVarVE(int con, int id, int slot, byte[] val, int e, int[] dims) argument
546 nScriptSetVarVE(int id, int slot, byte[] val, int e, int[] dims) argument
551 rsnScriptSetVarObj(int con, int id, int slot, int val) argument
552 nScriptSetVarObj(int id, int slot, int val) argument
564 rsnScriptIntrinsicCreate(int con, int id, int eid) argument
565 nScriptIntrinsicCreate(int id, int eid) argument
662 rsnMeshGetVertexBufferCount(int con, int id) argument
663 nMeshGetVertexBufferCount(int id) argument
667 rsnMeshGetIndexCount(int con, int id) argument
668 nMeshGetIndexCount(int id) argument
672 rsnMeshGetVertices(int con, int id, int[] vtxIds, int vtxIdCount) argument
673 nMeshGetVertices(int id, int[] vtxIds, int vtxIdCount) argument
677 rsnMeshGetIndices(int con, int id, int[] idxIds, int[] primitives, int vtxIdCount) argument
678 nMeshGetIndices(int id, int[] idxIds, int[] primitives, int vtxIdCount) argument
858 Priority(int id) argument
[all...]
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp293 int id = rsContextGetMessage(con, local
297 if (!id && receiveLen) {
311 int id = rsContextGetMessage(con, local
315 if (!id && receiveLen) {
319 return id;
329 int id = rsContextPeekMessage(con, &receiveLen, sizeof(receiveLen), local
334 return id;
372 jint id = (jint)rsElementCreate2(con, local
379 return (jint)id;
383 nElementGetNativeData(JNIEnv *_env, jobject _this, RsContext con, jint id, jintArra argument
401 nElementGetSubElements(JNIEnv *_env, jobject _this, RsContext con, jint id, jintArray _IDs, jobjectArray _names, jintArray _arraySizes) argument
435 jint id = (jint)rsTypeCreate(con, (RsElement)eid, dimx, dimy, dimz, mips, faces); local
440 nTypeGetNativeData(JNIEnv *_env, jobject _this, RsContext con, jint id, jintArray _typeData) argument
534 jint id = (jint)rsAllocationCreateFromBitmap(con, local
550 jint id = (jint)rsAllocationCubeCreateFromBitmap(con, local
788 jint id = (jint)rsaFileA3DCreateFromMemory(con, asset->getBuffer(false), asset->getLength()); local
806 jint id = (jint)rsaFileA3DCreateFromAsset(con, asset); local
814 jint id = (jint)rsaFileA3DCreateFromFile(con, fileNameUTF.c_str()); local
847 jint id = (jint)rsaFileA3DGetEntryByIndex(con, (uint32_t)index, (RsFile)fileA3D); local
858 jint id = (jint)rsFontCreateFromFile(con, local
872 jint id = (jint)rsFontCreateFromMemory(con, local
894 jint id = (jint)rsFontCreateFromMemory(con, local
1075 nScriptIntrinsicCreate(JNIEnv *_env, jobject _this, RsContext con, jint id, jint eid) argument
1112 int id = (int)rsScriptGroupCreate(con, local
1310 int id = (int)rsPathCreate(con, (RsPathPrimitive)prim, isStatic, local
1328 int id = (int)rsMeshCreate(con, local
[all...]
/frameworks/base/include/androidfw/
H A DResourceTypes.h210 #define Res_GETPACKAGE(id) ((id>>24)-1)
211 #define Res_GETTYPE(id) (((id>>16)&0xFF)-1)
212 #define Res_GETENTRY(id) (id&0xFFFF)
589 // Index (1-based) of the "id" attribute. 0 if none.
785 uint32_t id; member in struct:android::ResTable_package
1083 uint8_t id; member in struct:android::ResTable_typeSpec
1125 uint8_t id; member in struct:android::ResTable_type
[all...]
/frameworks/base/services/input/
H A DInputDispatcher.cpp154 int32_t id = pointerProperties[i].id; local
155 if (id < 0 || id > MAX_POINTER_ID) {
156 ALOGE("Motion event has invalid pointer id %d; value must be between 0 and %d",
157 id, MAX_POINTER_ID);
160 if (pointerIdBits.hasBit(id)) {
161 ALOGE("Motion event has duplicate pointer id %d", id);
164 pointerIdBits.markBit(id);
[all...]
H A DInputReader.cpp363 ALOGI("Device added: id=%d, name='%s' (ignored non-input device)", deviceId,
366 ALOGI("Device added: id=%d, name='%s', sources=0x%08x", deviceId,
387 ALOGI("Device removed: id=%d, name='%s' (ignored non-input device)",
390 ALOGI("Device removed: id=%d, name='%s', sources=0x%08x",
845 InputDevice::InputDevice(InputReaderContext* context, int32_t id, int32_t generation, argument
847 mContext(context), mId(id), mGeneration(generation),
1431 int id = pointers[i].id; local
1432 idToIndex[id] = other.idToIndex[id];
1441 uint32_t id = idBits.clearFirstMarkedBit(); local
1475 int id = pointerProperties[i].id; local
3696 uint32_t id = idBits.clearFirstMarkedBit(); local
3709 uint32_t id = idBits.clearFirstMarkedBit(); local
3793 uint32_t id = mCurrentRawPointerData.touchingIdBits.firstMarkedBit(); local
3822 uint32_t id = mCurrentRawPointerData.touchingIdBits.firstMarkedBit(); local
4212 uint32_t id = in.id; local
4370 uint32_t id = upGestureIdBits.clearFirstMarkedBit(); local
4400 uint32_t id = downGestureIdBits.clearFirstMarkedBit(); local
4459 uint32_t id = idBits.clearFirstMarkedBit(); local
4539 uint32_t id = idBits.clearFirstMarkedBit(); local
4923 uint32_t id = idBits.clearFirstMarkedBit(); local
4935 uint32_t id = idBits.clearFirstMarkedBit(); local
4956 uint32_t id = idBits.clearFirstMarkedBit(); local
5058 uint32_t id = idBits.clearFirstMarkedBit(); local
5219 uint32_t id = idBits.clearFirstMarkedBit(); local
5231 uint32_t id = idBits.clearFirstMarkedBit(); local
5252 uint32_t id = mCurrentStylusIdBits.firstMarkedBit(); local
5286 uint32_t id = mCurrentMouseIdBits.firstMarkedBit(); local
5471 uint32_t id = idBits.clearFirstMarkedBit(); local
5512 uint32_t id = idBits.clearFirstMarkedBit(); local
5582 uint32_t id = i; local
5594 uint32_t id = mLastRawPointerData.pointers[0].id; local
5723 uint32_t id = mLastRawPointerData.pointers[lastPointerIndex].id; local
5741 uint32_t id = usedIdBits.markFirstUnmarkedBit(); local
5947 int32_t id = -1; local
[all...]
H A DInputReader.h510 InputDevice(InputReaderContext* context, int32_t id, int32_t generation,
730 /* Raw data for a collection of pointers including a pointer id mapping table. */
733 uint32_t id; member in struct:android::RawPointerData::Pointer
759 inline void markIdBit(uint32_t id, bool isHovering) { argument
761 hoveringIdBits.markBit(id);
763 touchingIdBits.markBit(id);
772 inline const Pointer& pointerForId(uint32_t id) const {
773 return pointers[idToIndex[id]];
782 /* Cooked data for a collection of pointers including a pointer id mapping table. */
795 return hoveringIdBits.hasBit(pointerProperties[pointerIndex].id);
[all...]
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp1037 << "Should return unknown when the device id is >= 0 but unknown.";
1041 << "Should return unknown when the device id is valid but the sources are not supported by the device.";
1045 << "Should return value provided by mapper when device id is valid and the device supports some of the sources.";
1049 << "Should return unknown when the device id is < 0 but the sources are not supported by any device.";
1053 << "Should return value provided by mapper when device id is < 0 and one of the devices supports some of the sources.";
1064 << "Should return unknown when the device id is >= 0 but unknown.";
1068 << "Should return unknown when the device id is valid but the sources are not supported by the device.";
1072 << "Should return value provided by mapper when device id is valid and the device supports some of the sources.";
1076 << "Should return unknown when the device id is < 0 but the sources are not supported by any device.";
1080 << "Should return value provided by mapper when device id i
3775 processId( MultiTouchInputMapper* mapper, int32_t id) argument
4445 int32_t id = 5; local
[all...]
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java591 com.android.internal.R.id.hard_keyboard_section).setVisibility(
659 userId = ActivityManagerNative.getDefault().getCurrentUser().id;
900 // 2) the calling process' user id is identical to the current user id IMMS thinks.
907 + " calling userId = " + userId + ", foreground user id = "
1213 throw new IllegalArgumentException("Unknown id: " + mCurMethodId);
1593 String id = mSettings.getSelectedInputMethod();
1595 if (TextUtils.isEmpty(id) && chooseNewDefaultIMELocked()) {
1596 id = mSettings.getSelectedInputMethod();
1598 if (!TextUtils.isEmpty(id)) {
1614 setInputMethodLocked(String id, int subtypeId) argument
1997 setInputMethod(IBinder token, String id) argument
2005 setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) argument
2183 setInputMethodWithSubtypeId(IBinder token, String id, int subtypeId) argument
2826 setInputMethodEnabled(String id, boolean enabled) argument
2849 setInputMethodEnabledLocked(String id, boolean enabled) argument
2959 getSelectedInputMethodSubtypeId(String id) argument
3555 appendAndPutEnabledInputMethodLocked(String id, boolean reloadInputMethodStr) argument
3572 buildAndPutEnabledInputMethodsStrRemovingIdLocked( StringBuilder builder, List<Pair<String, ArrayList<String>>> imsList, String id) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityThread.java1624 // instead of using the raw display id everywhere. The Display object caches
1999 public final Activity startActivityNow(Activity parent, String id, argument
2008 r.embeddedID = id;
2031 IBinder token, String id, int requestCode,
2033 if (DEBUG_RESULTS) Slog.v(TAG, "sendActivityResult: id=" + id
2036 list.add(new ResultInfo(id, requestCode, resultCode, data));
2030 sendActivityResult( IBinder token, String id, int requestCode, int resultCode, Intent data) argument
H A DIActivityManager.java139 int id, Notification notification, boolean keepNotification) throws RemoteException;
138 setServiceForeground(ComponentName className, IBinder token, int id, Notification notification, boolean keepNotification) argument
/frameworks/base/core/java/android/provider/
H A DContactsContract.java939 * its row id changed as a result of a sync or aggregation.
1245 * row id changed as a result of a sync or aggregation.</td>
2109 * @param id The ID to check.
2112 public static boolean isProfileId(long id) { argument
2113 return id >= Profile.MIN_ID;
2519 * source id. This indicates to the sync adapter that a new contact needs
2878 // read data rows until the contact id changes
4041 * <td>The id of the row in the {@link RawContacts} table that this data belongs to.</td>
4186 * <td>The id of the row in the {@link Contacts} table that this data belongs
6579 * is found, it will use the corresponding row id
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java490 int id = a.getResourceId(attr, -1);
491 if (id > 0) {
492 setLayoutAnimation(AnimationUtils.loadLayoutAnimation(mContext, id));
1844 // Clean up earlier touch targets for this pointer id in case they
3041 protected View findViewTraversal(int id) { argument
3042 if (id == mID) {
3053 v = v.findViewById(id);
H A DView.java273 * Views may have an integer id associated with them. These ids are typically
280 * android:id="@+id/my_button"
287 * Button myButton = (Button) findViewById(R.id.my_button);
1514 * The next available accessibility id.
2837 * Specifies the id of a view for which this view serves as a label for
2843 * Predicate for matching labeled view id with its label for
2849 * Predicate for matching a view by its id.
3582 int id = getId();
3583 String idText = id
5268 setLabelFor(int id) argument
6339 findViewInsideOutShouldExist(View root, int id) argument
15061 findViewTraversal(int id) argument
15100 findViewById(int id) argument
15213 setId(int id) argument
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp244 const uint32_t type = Res_GETTYPE(key) + 1; // add one, idmap stores "public" type id
813 int32_t id = getCommentID(); local
814 return id >= 0 ? mTree.mStrings.stringAt(id, outLen) : NULL;
832 int32_t id = getTextID(); local
833 return id >= 0 ? mTree.mStrings.stringAt(id, outLen) : NULL;
855 int32_t id = getNamespacePrefixID(); local
856 //printf("prefix=%d event=%p\n", id, mEventCode);
857 return id >
870 int32_t id = getNamespaceUriID(); local
888 int32_t id = getElementNamespaceID(); local
905 int32_t id = getElementNameID(); local
934 int32_t id = getAttributeNamespaceID(idx); local
957 int32_t id = getAttributeNameID(idx); local
965 int32_t id = getAttributeNameID(idx); local
989 int32_t id = getAttributeValueStringID(idx); local
2417 uint32_t const id; member in struct:android::ResTable::PackageGroup
3543 uint32_t id; member in struct:android::id_name_map
4987 uint32_t id = idmap_id != 0 ? idmap_id : dtohl(pkg->id); local
[all...]
/frameworks/base/media/java/android/media/
H A DAudioService.java206 /* Sound effect file name mapping sound effect id (AudioManager.FX_xxx) to
4071 IAudioFocusDispatcher afl, IBinder source, String id, AudioFocusDeathHandler hdlr,
4076 mClientId = id;
4673 private RemotePlaybackState(int id, int vol, int volMax) { argument
4674 mRccId = id;
4819 " -- id: " + rcse.mRccId +
5483 if(DEBUG_RC) Log.d(TAG, "onNewPlaybackInfoForRcc(id=" + rccId +
4070 FocusStackEntry(int streamType, int duration, IAudioFocusDispatcher afl, IBinder source, String id, AudioFocusDeathHandler hdlr, String pn, int uid) argument
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java168 private static final int ID_SELECT_ALL = android.R.id.selectAll;
169 private static final int ID_START_SELECTING_TEXT = android.R.id.startSelectingText;
170 private static final int ID_STOP_SELECTING_TEXT = android.R.id.stopSelectingText;
171 private static final int ID_PASTE = android.R.id.paste;
172 private static final int ID_COPY = android.R.id.copy;
173 private static final int ID_CUT = android.R.id.cut;
279 public boolean onTextContextMenuItem(int id) { argument
281 switch (id) {
324 return super.onTextContextMenuItem(id);
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp497 // if no audio session id is provided, create one here
1136 AudioFlinger::ThreadBase::ThreadBase(const sp<AudioFlinger>& audioFlinger, audio_io_handle_t id, argument
1146 mAudioSource(AUDIO_SOURCE_DEFAULT), mId(id),
1545 audio_io_handle_t id,
1548 : ThreadBase(audioFlinger, id, device, AUDIO_DEVICE_NONE, type),
1560 snprintf(mName, kNameLength, "AudioOut_%X", id);
2256 audio_io_handle_t id, audio_devices_t device, type_t type)
2257 : PlaybackThread(audioFlinger, output, id, device, type),
2265 ALOGV("MixerThread() id=%d device=%#x type=%d", id, devic
1543 PlaybackThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, audio_io_handle_t id, audio_devices_t device, type_t type) argument
2255 MixerThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, audio_io_handle_t id, audio_devices_t device, type_t type) argument
3695 DirectOutputThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, audio_io_handle_t id, audio_devices_t device) argument
3983 DuplicatingThread(const sp<AudioFlinger>& audioFlinger, AudioFlinger::MixerThread* mainThread, audio_io_handle_t id) argument
5986 RecordThread(const sp<AudioFlinger>& audioFlinger, AudioStreamIn *input, uint32_t sampleRate, audio_channel_mask_t channelMask, audio_io_handle_t id, audio_devices_t device) argument
6980 audio_io_handle_t id = nextUniqueId(); local
7049 audio_io_handle_t id = nextUniqueId(); local
7163 audio_io_handle_t id = nextUniqueId(); local
7468 createEffect(pid_t pid, effect_descriptor_t *pDesc, const sp<IEffectClient>& effectClient, int32_t priority, audio_io_handle_t io, int sessionId, status_t *status, int *id, int *enabled) argument
7802 int id = mAudioFlinger->nextUniqueId(); local
8157 EffectModule(ThreadBase *thread, const wp<AudioFlinger::EffectChain>& chain, effect_descriptor_t *desc, int id, int sessionId) argument
9218 getEffectFromId_l(int id) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java615 * any user id that can impact battery performance.
726 * Current sequence id for oom_adj computation traversal.
731 * Current sequence id for process LRU updating.
3598 * The pkg name and app id have to be specified.
3780 // give user id.
3959 // Different app id, skip it.
5679 ci.id = curTask.taskId;
5781 rti.id = tr.numActivities > 0 ? tr.taskId : -1;
5818 private TaskRecord taskForIdLocked(int id) { argument
5822 if (tr.taskId == id) {
5829 getTaskThumbnails(int id) argument
5841 getTaskTopThumbnail(int id) argument
10294 final int id; field in class:ActivityManagerService.MemItem
10977 setServiceForeground(ComponentName className, IBinder token, int id, Notification notification, boolean removeNotification) argument
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java5384 for (int id : userIds) {
5395 if (uid > 0 && UserHandle.getUserId(uid) != id) {
5396 uid = UserHandle.getUid(id, UserHandle.getAppId(uid));
5399 intent.putExtra(Intent.EXTRA_USER_HANDLE, id);
5404 Slog.d(TAG, "Sending to user " + id + ": "
5409 0, null, null, null, finishedReceiver != null, false, id);
5688 public void verifyPendingInstall(int id, int verificationCode) throws RemoteException { argument
5696 msg.arg1 = id;
5702 public void extendVerificationTimeout(int id, int verificationCodeAtTimeout, argument
5708 final PackageVerificationState state = mPendingVerification.get(id);
[all...]
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp7830 GLboolean GLTrace_glIsQueryEXT(GLuint id) { argument
7836 // copy argument id
7840 arg_id->add_intvalue(id);
7845 GLboolean retValue = glContext->hooks->gl.glIsQueryEXT(id);
7866 void GLTrace_glBeginQueryEXT(GLenum target, GLuint id) { argument
7878 // copy argument id
7882 arg_id->add_intvalue(id);
7887 glContext->hooks->gl.glBeginQueryEXT(target, id);
7969 void GLTrace_glGetQueryObjectuivEXT(GLuint id, GLenum pname, GLuint *params) { argument
7975 // copy argument id
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewClassic.java826 // The id of the native layer being scrolled.
4786 // see http://b/issue?id=2457459
8261 * @param id The ID of the item to keep checked.
8265 public SingleDataSetObserver(long id, ListView l, Adapter a) { argument
8266 mCheckedId = id;
8276 long id = mAdapter.getItemId(position);
8277 if (mCheckedId != id) {
8346 int position, long id) {
8350 EventHub.SINGLE_LISTBOX_CHOICE, (int) id, 0);

Completed in 1803 milliseconds

<<111213141516