Searched defs:id (Results 276 - 300 of 348) sorted by relevance

<<11121314

/frameworks/base/services/java/com/android/server/
H A DNotificationManagerService.java285 private static String idDebugString(Context baseContext, String packageName, int id) { argument
304 return r.getResourceName(id);
314 final int id; field in class:NotificationManagerService.NotificationRecord
321 NotificationRecord(String pkg, String tag, int id, int uid, int initialPid, int score, Notification notification) argument
325 this.id = id;
358 + " id=" + Integer.toHexString(id)
432 public void onNotificationClick(String pkg, String tag, int id) {
433 cancelNotification(pkg, tag, id, Notificatio
848 enqueueNotification(String pkg, int id, Notification notification, int[] idOut) argument
853 enqueueNotificationWithTag(String pkg, String tag, int id, Notification notification, int[] idOut) argument
867 enqueueNotificationInternal(String pkg, int callingUid, int callingPid, String tag, int id, Notification notification, int[] idOut) argument
1175 cancelNotification(String pkg, String tag, int id, int mustHaveFlags, int mustNotHaveFlags, boolean sendDelete) argument
1238 cancelNotification(String pkg, int id) argument
1242 cancelNotificationWithTag(String pkg, String tag, int id) argument
1333 indexOfNotificationLocked(String pkg, String tag, int id) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DDataConnection.java265 protected DataConnection(PhoneBase phone, String name, int id, RetryManager rm, argument
272 mId = id;
402 * The id is owned by DataConnectionTracker.
/frameworks/base/test-runner/src/android/test/mock/
H A DMockPackageManager.java540 public boolean removeUser(int id) { argument
548 public void updateUserName(int id, String name) { argument
556 public void updateUserFlags(int id, int flags) { argument
571 public void verifyPendingInstall(int id, int verificationCode) { argument
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DCallbackProxy.java148 int id = args.getInt("id");
149 mEventSender.updateTouchPoint(id, x, y);
339 public void updateTouchPoint(int id, int x, int y) { argument
343 map.putInt("id", id);
358 public void releaseTouchPoint(int id) { argument
359 obtainMessage(EVENT_RELEASE_TOUCH_POINT, id, 0).sendToTarget();
375 public void cancelTouchPoint(int id) { argument
376 obtainMessage(EVENT_CANCEL_TOUCH_POINT, id,
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiNative.java738 public boolean p2pServDiscCancelReq(String id) { argument
739 return doBooleanCommand("P2P_SERV_DISC_CANCEL_REQ " + id);
/frameworks/native/opengl/tests/hwc/
H A DhwcTestLib.cpp368 // of the graphic format specified by the id parameter. Search failure
370 const struct hwcTestGraphicFormat *hwcTestGraphicFormatLookup(uint32_t id) argument
373 if (id == hwcTestGraphicFormat[n1].format) {
/frameworks/rs/
H A DrsAllocation.cpp309 ALOGE("allocation loading skipped due to invalid class id\n");
405 int32_t id = rsc->mHal.funcs.allocation.initSurfaceTexture(rsc, this); local
406 mHal.state.surfaceTextureID = id;
407 return id;
/frameworks/av/media/libeffects/preprocessing/
H A DPreProcessing.cpp102 int id; // audio session ID member in struct:preproc_session_s
754 session->id = 0;
1116 sSessions[i].id = sessionId;
/frameworks/av/media/libstagefright/
H A DACodec.cpp369 msg->setTarget(id());
375 msg->setTarget(id());
381 msg->setTarget(id());
386 (new AMessage(kWhatStart, id()))->post();
391 (new AMessage(kWhatFlush, id()))->post();
395 (new AMessage(kWhatResume, id()))->post();
399 sp<AMessage> msg = new AMessage(kWhatShutdown, id());
2278 IOMX::buffer_id id, const sp<ABuffer> &buffer) {
2279 mBufferIDs.push_back(id);
2461 notify->setPointer("buffer-id", inf
2277 addBuffer( IOMX::buffer_id id, const sp<ABuffer> &buffer) argument
[all...]
H A DMPEG4Extractor.cpp520 uint8_t id; local
529 if (mDataSource->readAt(data_offset, &id, 1) < 1) {
535 while (sinf && (sinf->IPMPDescriptorID != id)) {
1490 int32_t id; local
1495 id = U32_AT(&buffer[20]);
1502 id = U32_AT(&buffer[12]);
1506 mLastTrack->meta->setInt32(kKeyTrackID, id);
/frameworks/av/services/audioflinger/
H A DAudioPolicyService.cpp98 ALOGI("Loaded audio policy from %s (%s)", module->name, module->id);
455 int id)
460 return mpAudioPolicy->register_effect(mpAudioPolicy, desc, io, strategy, session, id);
463 status_t AudioPolicyService::unregisterEffect(int id) argument
468 return mpAudioPolicy->unregister_effect(mpAudioPolicy, id);
471 status_t AudioPolicyService::setEffectEnabled(int id, bool enabled) argument
476 return mpAudioPolicy->set_effect_enabled(mpAudioPolicy, id, enabled);
451 registerEffect(effect_descriptor_t *desc, audio_io_handle_t io, uint32_t strategy, int session, int id) argument
/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java397 validateAccountsAndPopulateCache(getUserAccounts(user.id));
651 int id = accounts.credentialsPermissionNotificationIds.get(pair);
652 cancelNotification(id);
1217 Integer id;
1223 id = accounts.credentialsPermissionNotificationIds.get(key);
1224 if (id == null) {
1225 id = mNotificationIds.incrementAndGet();
1226 accounts.credentialsPermissionNotificationIds.put(key, id);
1229 return id;
1233 Integer id;
2113 cancelNotification(int id) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManager.java415 public int id; field in class:ActivityManager.RecentTaskInfo
450 dest.writeInt(id);
464 id = source.readInt();
551 public int id; field in class:ActivityManager.RunningTaskInfo
595 dest.writeInt(id);
611 id = source.readInt();
815 public TaskThumbnails getTaskThumbnails(int id) throws SecurityException { argument
817 return ActivityManagerNative.getDefault().getTaskThumbnails(id);
1324 * The user id of this process.
1862 * @param userid the user's id
[all...]
H A DDownloadManager.java905 long id = Long.parseLong(downloadUri.getLastPathSegment());
906 return id;
925 // if only one id is passed in, then include it in the uri itself.
963 * @param id the ID of the download
967 public ParcelFileDescriptor openDownloadedFile(long id) throws FileNotFoundException { argument
968 return mResolver.openFileDescriptor(getDownloadUri(id), "r");
972 * Returns {@link Uri} for the given downloaded file id, if the file is
979 * @param id the id of the downloaded file.
980 * @return the {@link Uri} for the given downloaded file id, i
983 getUriForDownloadedFile(long id) argument
1036 getMimeTypeForDownloadedFile(long id) argument
1199 getDownloadUri(long id) argument
[all...]
H A DInstrumentation.java65 public static final String REPORT_KEY_IDENTIFIER = "id";
730 * @param id The identifier associated with the menu item.
736 int id, int flag) {
760 MenuRunnable mr = new MenuRunnable(targetActivity, id, flag);
770 * @param id The identifier associated with the context menu item.
775 public boolean invokeContextMenuAction(Activity targetActivity, int id, int flag) { argument
822 ContextMenuRunnable cmr = new ContextMenuRunnable(targetActivity, id, flag);
1015 * @param id The embedded Id (if any)
1025 CharSequence title, Activity parent, String id,
1031 info, title, parent, id,
735 invokeMenuActionSync(Activity targetActivity, int id, int flag) argument
1023 newActivity(Class<?> clazz, Context context, IBinder token, Application application, Intent intent, ActivityInfo info, CharSequence title, Activity parent, String id, Object lastNonConfigurationInstance) argument
[all...]
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java183 * @param id Resource id of the string array
185 /*package*/ final String[] getResourceStringArray(final int id) { argument
186 String[] retArray = getArrayStringResource(id);
210 * @param id Resource id of the string array
212 /*package*/ final CharSequence[] getResourceTextArray(final int id) { argument
213 int[] rawInfoArray = getArrayStringInfo(id);
270 /*package*/ final CharSequence getPooledString(int block, int id) { argument
272 // + ", id
497 xmlBlockGone(int id) argument
747 incRefsLocked(int id) argument
759 decRefsLocked(int id) argument
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java666 mFullscreenArea = (ViewGroup)mRootView.findViewById(com.android.internal.R.id.fullscreenArea);
668 mExtractFrame = (FrameLayout)mRootView.findViewById(android.R.id.extractArea);
675 mCandidatesFrame = (FrameLayout)mRootView.findViewById(android.R.id.candidatesArea);
676 mInputFrame = (FrameLayout)mRootView.findViewById(android.R.id.inputArea);
1137 * Force switch to a new input method, as identified by <var>id</var>. This
1141 * @param id Unique identifier of the new input method ot start.
1143 public void switchInputMethod(String id) { argument
1144 mImm.setInputMethod(mToken, id);
1155 com.android.internal.R.id.inputExtractEditText);
1158 com.android.internal.R.id
2082 onExtractTextContextMenuItem(int id) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DMediaStore.java494 * @param origId original image or video id. use -1 to cancel all requests.
519 * @param origId original image or video id
523 * @param groupId the id of group to which this request belongs
638 * The picasa id of the image
676 * The mini thumb id.
682 * The bucket id of the image. This is a read-only property that
759 long id,
777 values.put(Images.Thumbnails.IMAGE_ID, (int)id);
829 long id = ContentUris.parseId(url);
831 Bitmap miniThumb = Images.Thumbnails.getThumbnail(cr, id,
756 StoreThumbnail( ContentResolver cr, Bitmap source, long id, float width, float height, int kind) argument
[all...]
/frameworks/base/core/java/android/view/
H A DWindow.java120 public static final int ID_ANDROID_CONTENT = com.android.internal.R.id.content;
903 * Finds a view that was identified by the id attribute from the XML that
910 public View findViewById(int id) { argument
911 return getDecorView().findViewById(id);
997 int id,
1002 public abstract boolean performContextMenuIdentifierAction(int id, int flags); argument
996 performPanelIdentifierAction(int featureId, int id, int flags) argument
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java353 mCurId = res.id;
1105 if (res.id != null) {
1442 * @param id The unique identifier for the new input method to be switched to.
1444 public void setInputMethod(IBinder token, String id) { argument
1446 mService.setInputMethod(token, id);
1458 * @param id The unique identifier for the new input method to be switched to.
1461 public void setInputMethodAndSubtype(IBinder token, String id, InputMethodSubtype subtype) { argument
1463 mService.setInputMethodAndSubtype(token, id, subtype);
/frameworks/base/core/java/android/webkit/
H A DBrowserFrame.java722 final int id = field.getInt(null);
724 mContext.getResources().getValue(id, value, true);
953 private String getRawResFilename(int id) { argument
954 return getRawResFilename(id, mContext);
956 /* package */ static String getRawResFilename(int id, Context context) { argument
958 switch (id) {
994 if (id == DRAWABLEDIR) {
H A DCallbackProxy.java667 .findViewById(R.id.value);
669 ((TextView) view.findViewById(R.id.message))
893 msg.getData().getInt("id"), success);
1642 void onSearchboxDispatchCompleteCallback(String function, int id, boolean success) { argument
1646 msg.getData().putInt("id", id);
/frameworks/base/core/java/android/widget/
H A DListView.java3436 protected View findViewTraversal(int id) { argument
3438 v = super.findViewTraversal(id);
3440 v = findViewInHeadersOrFooters(mHeaderViewInfos, id);
3444 v = findViewInHeadersOrFooters(mFooterViewInfos, id);
3456 View findViewInHeadersOrFooters(ArrayList<FixedViewInfo> where, int id) { argument
3465 v = v.findViewById(id);
3575 * @return A new array which contains the id of each checked item in the
H A DRemoteViews.java245 public SetOnClickFillInIntent(int id, Intent fillInIntent) { argument
246 this.viewId = id;
272 target.setTagInternal(com.android.internal.R.id.fillInIntent, fillInIntent);
326 public SetPendingIntentTemplate(int id, PendingIntent pendingIntentTemplate) { argument
327 this.viewId = id;
353 int position, long id) {
368 Object tag = vg.getChildAt(i).getTag(com.android.internal.R.id.fillInIntent);
397 "an AdapterView (id: " + viewId + ")");
409 public SetRemoteViewsAdapterIntent(int id, Intent intent) { argument
410 this.viewId = id;
468 SetOnClickPendingIntent(int id, PendingIntent pendingIntent) argument
561 SetDrawableParameters(int id, boolean targetBackground, int alpha, int colorFilter, PorterDuff.Mode mode, int level) argument
722 getBitmapForId(int id) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DGlowPadView.java273 private int getResourceId(TypedArray a, int id) { argument
274 TypedValue tv = a.peekValue(id);
607 * Sets the resource id specifying the target descriptions for accessibility.
609 * @param resourceId The resource id.
619 * Gets the resource id specifying the target descriptions for accessibility.
621 * @return The resource id.
628 * Sets the resource id specifying the target direction descriptions for accessibility.
630 * @param resourceId The resource id.
640 * Gets the resource id specifying the target direction descriptions.
642 * @return The resource id
[all...]

Completed in 428 milliseconds

<<11121314