Searched refs:info (Results 201 - 225 of 338) sorted by relevance

1234567891011>>

/packages/apps/Camera/src/com/android/camera/
H A DUtil.java392 Camera.CameraInfo info = new Camera.CameraInfo();
393 Camera.getCameraInfo(cameraId, info);
395 if (info.facing == Camera.CameraInfo.CAMERA_FACING_FRONT) {
396 result = (info.orientation + degrees) % 360;
399 result = (info.orientation - degrees + 360) % 360;
405 Camera.CameraInfo info = new Camera.CameraInfo();
406 Camera.getCameraInfo(cameraId, info);
407 return info.orientation;
698 CameraInfo info = CameraHolder.instance().getCameraInfo()[cameraId];
699 if (info
[all...]
/packages/apps/Email/src/com/android/email/provider/
H A DAccountReconciler.java247 final EmailServiceInfo info = EmailServiceUtils.getServiceInfo(context, protocol);
248 if (!info.syncCalendar) {
252 if (!info.syncContacts) {
/packages/apps/Nfc/src/com/android/nfc/
H A DRegisteredComponentCache.java163 Log.w(TAG, "Unable to load component info " + resolveInfo.toString(), e);
165 Log.w(TAG, "Unable to load component info " + resolveInfo.toString(), e);
178 void parseComponentInfo(PackageManager pm, ResolveInfo info, argument
180 ActivityInfo ai = info.activityInfo;
190 parser, info, components);
/packages/apps/Settings/src/com/android/settings/wifi/
H A DWifiEnabler.java62 NetworkInfo info = (NetworkInfo) intent.getParcelableExtra(
64 mConnected.set(info.isConnected());
65 handleStateChanged(info.getDetailedState());
184 WifiInfo info = mWifiManager.getConnectionInfo();
185 if (info != null) {
186 //setSummary(Summary.get(mContext, info.getSSID(), state));
H A DWifiSetupActivity.java90 // Refresh the connection state with the latest connection info. Use the connection info
267 final NetworkInfo info = connectivity.getActiveNetworkInfo();
268 return info != null && info.isConnected();
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DConversationSelectionSet.java182 private void put(Long id, Conversation info) { argument
185 mInternalMap.put(id, info);
186 mConversationUriToIdMap.put(info.uri.toString(), id);
/packages/experimental/BugReportSender/src/com/android/bugreportsender/
H A DBugReportListActivity.java128 AdapterView.AdapterContextMenuInfo info =
130 if (info.position >= mFiles.size()) {
139 File file = mFiles.get(info.position);
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadReceiver.java75 final NetworkInfo info = connManager.getActiveNetworkInfo();
76 if (info != null && info.isConnected()) {
/packages/services/Telephony/src/com/android/phone/
H A DCallForwardEditPreference.java214 CallForwardInfo info = cfInfoArray[i];
215 handleCallForwardResult(info);
223 info.status == 1) {
H A DPhoneUtils.java534 * that may block to query the caller info.
620 // Now that the call is successful, we can save the gateway info for the call
1223 * Returns the caller-id info corresponding to the specified Connection.
1239 CallerInfo info = null;
1247 info = CallerInfo.getCallerInfo(context, (Uri) userDataObject);
1248 if (info != null) {
1249 c.setUserData(info);
1254 info = ((CallerInfoToken) userDataObject).currentInfo;
1257 info = (CallerInfo) userDataObject;
1259 if (info
1321 startGetCallerInfo(Context context, Connection c, CallerInfoAsyncQuery.OnQueryCompleteListener listener, Object cookie, RawGatewayInfo info) argument
[all...]
/packages/apps/Settings/src/com/android/settings/applications/
H A DRunningState.java127 final ActivityManager.RunningAppProcessInfo info; field in class:RunningState.AppProcessInfo
132 info = _info;
431 // service info.
602 // we will just use the info from the first child.
837 UserInfo info = mUm.getUserInfo(newItem.mUserId);
838 userItem.mUser.mInfo = info;
839 if (info != null) {
840 userItem.mUser.mIcon = Utils.getUserIcon(context, mUm, info);
842 String name = info != null ? info
[all...]
H A DManageApplications.java103 boolean check(ApplicationInfo info) { argument
105 if ((info.flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0) {
108 if ((info.flags & ApplicationInfo.FLAG_SYSTEM) == 0) {
109 if (info.installLocation == PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL ||
110 info.installLocation == PackageInfo.INSTALL_LOCATION_AUTO) {
112 } else if (info.installLocation
757 if (holder.entry.info.packageName.equals(packageName)) {
761 if (holder.entry.info.packageName.equals(mTab.mOwner.mCurrentPkgName)
817 if ((entry.info.flags&ApplicationInfo.FLAG_INSTALLED) == 0) {
820 } else if (!entry.info
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DDeviceAdminSettings.java64 * Internal collection of device admin info objects for all profiles associated with the current
262 DeviceAdminInfo info = (DeviceAdminInfo) o;
263 if (isActiveAdmin(info) && getUserId(info) == UserHandle.myUserId()
264 && (isDeviceOwner(info) || isProfileOwner(info))) {
439 * Creates a device admin info object for the resolved intent that points to the component of
457 * Extracts the user id from a device admin info object.
458 * @param adminInfo the device administrator info.
H A DDeviceInfoSettings.java136 * info.
387 for (ResolveInfo info : resolvedPackages) {
388 if (info.activityInfo != null) {
389 if (!TextUtils.isEmpty(info.activityInfo.packageName)) {
391 ApplicationInfo ai = pm.getApplicationInfo(info.activityInfo.packageName, 0);
395 info.activityInfo.packageName, feedbackReporter)) {
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DEntrySchema.java478 Entry.Column info = ((AnnotatedElement) field).getAnnotation(Entry.Column.class);
479 if (info == null) continue;
507 columns.add(new ColumnInfo(info.value(), type, info.indexed(), info.unique(),
508 info.fullText(), info.defaultValue(), field, index));
/packages/apps/Settings/src/com/android/settings/accessibility/
H A DAccessibilitySettings.java449 AccessibilityServiceInfo info = installedServices.get(i);
453 String title = info.getResolveInfo().loadLabel(getPackageManager()).toString();
455 ServiceInfo serviceInfo = info.getResolveInfo().serviceInfo;
494 String description = info.loadDescription(getPackageManager());
500 String settingsClassName = info.getSettingsActivityName();
505 new ComponentName(info.getResolveInfo().serviceInfo.packageName,
/packages/apps/Mms/src/com/android/mms/ui/
H A DManageSimMessages.java208 AdapterView.AdapterContextMenuInfo info;
210 info = (AdapterView.AdapterContextMenuInfo) item.getMenuInfo();
216 final Cursor cursor = (Cursor) mListAdapter.getItem(info.position);
/packages/apps/Settings/src/com/android/settings/quicklaunch/
H A DQuickLaunchSettings.java137 // Restore the clear dialog's info
147 // Save the clear dialog's info
318 ResolveInfo info = packageManager.resolveActivity(intent, 0);
319 if (info != null) {
320 title = info.loadLabel(packageManager);
/packages/apps/Stk/src/com/android/stk/
H A DStkMenuActivity.java259 AdapterView.AdapterContextMenuInfo info;
261 info = (AdapterView.AdapterContextMenuInfo) item.getMenuInfo();
269 int position = info.position;
/packages/apps/Calendar/src/com/android/calendar/agenda/
H A DAgendaListView.java318 DayAdapterInfo info = mWindowAdapter.getAdapterInfoByPosition(position);
319 if (info != null) {
320 return info.dayAdapter.findJulianDayFromPosition(position - info.offset);
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DAlertReceiver.java500 for (AlertService.NotificationInfo info : notificationInfos) {
502 String name = info.eventName;
507 info.startMillis, info.allDay, info.location);
573 for (AlertService.NotificationInfo info : notificationInfos) {
574 nw.add(new NotificationWrapper(null, 0, info.eventId, info.startMillis,
575 info.endMillis, false));
/packages/apps/Dialer/src/com/android/dialer/
H A DCallDetailActivity.java557 ContactInfo info =
562 if (info == null) {
572 formattedNumber = info.formattedNumber;
573 nameText = info.name;
574 numberType = info.type;
575 numberLabel = info.label;
576 photoUri = info.photoUri;
577 lookupUri = info.lookupUri;
578 sourceType = info.sourceType;
/packages/apps/Email/src/com/android/email/activity/setup/
H A DAccountSetupCredentialsFragment.java175 final EmailServiceInfo info = EmailServiceUtils.getServiceInfo(mAppContext, protocol);
176 if (info != null) {
178 mOfferOAuth = info.offerOAuth;
180 mOfferCerts = info.offerCerts;
/packages/apps/Launcher2/src/com/android/launcher2/
H A DInfoDropTarget.java101 public void onDragStart(DragSource source, Object info, int dragAction) { argument
/packages/apps/Launcher3/src/com/android/launcher3/
H A DInfoDropTarget.java104 public void onDragStart(DragSource source, Object info, int dragAction) { argument

Completed in 613 milliseconds

1234567891011>>