Searched defs:mProfile (Results 1 - 12 of 12) sorted by relevance

/packages/apps/Settings/src/com/android/settings/
H A DAllowBindAppWidgetActivity.java45 private UserHandle mProfile; field in class:AllowBindAppWidgetActivity
60 mProfile, mComponentName, null);
96 mProfile = intent.getParcelableExtra(
98 if (mProfile == null) {
99 mProfile = android.os.Process.myUserHandle();
138 mProfile.getIdentifier()));
/packages/apps/Launcher3/src/com/android/launcher3/
H A DDynamicGrid.java31 private DeviceProfile mProfile; field in class:DynamicGrid
100 mProfile = new DeviceProfile(context, deviceProfiles,
108 return mProfile;
113 "Wd: " + mProfile.minWidthDps + ", Hd: " + mProfile.minHeightDps +
114 ", W: " + mProfile.widthPx + ", H: " + mProfile.heightPx +
115 " [r: " + mProfile.numRows + ", c: " + mProfile.numColumns +
116 ", is: " + mProfile
[all...]
/packages/services/Telephony/sip/src/com/android/services/telephony/sip/
H A DSipAccountRegistry.java38 private final SipProfile mProfile; field in class:SipAccountRegistry.AccountEntry
41 mProfile = profile;
45 return mProfile;
59 if (VERBOSE) log("startSipService, profile: " + mProfile);
63 sipManager.close(mProfile.getUriString());
68 mProfile,
70 mProfile.getUriString()),
73 sipManager.open(mProfile);
77 log("startSipService, profile: " + mProfile.getProfileName() +
93 sipManager.close(mProfile
[all...]
H A DSipSettings.java77 private SipProfile mProfile; // profile that's being edited field in class:SipSettings
86 SipProfile mProfile; field in class:SipSettings.SipPreference
93 return mProfile;
97 mProfile = p;
105 int profileUid = mProfile.getCallingUid();
174 if (mProfile != null) {
175 if (VERBOSE) log("onActivityResult, remove: " + mProfile.getProfileName());
176 deleteProfile(mProfile);
283 handleProfileClick(((SipPreference) pref).mProfile);
342 mProfile
[all...]
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DLocalBluetoothProfileManager.java220 final LocalBluetoothProfile mProfile; field in class:LocalBluetoothProfileManager.StateChangedHandler
223 mProfile = profile;
237 Log.i(TAG, "Failed to connect " + mProfile + " device");
240 cachedDevice.onProfileStateChanged(mProfile, newState);
254 PanProfile panProfile = (PanProfile) mProfile;
/packages/apps/Settings/src/com/android/settings/vpn2/
H A DVpnDialog.java45 private final VpnProfile mProfile; field in class:VpnDialog
72 mProfile = profile;
103 mName.setText(mProfile.name);
104 mType.setSelection(mProfile.type);
105 mServer.setText(mProfile.server);
106 if (mProfile.saveLogin) {
107 mUsername.setText(mProfile.username);
108 mPassword.setText(mProfile.password);
110 mSearchDomains.setText(mProfile.searchDomains);
111 mDnsServers.setText(mProfile
[all...]
H A DVpnSettings.java430 private VpnProfile mProfile; field in class:VpnSettings.VpnPreference
438 mProfile = profile;
443 return mProfile;
447 mProfile = profile;
460 setSummary(types[mProfile.type]);
466 setTitle(mProfile.name);
476 (result = mProfile.name.compareTo(another.mProfile.name)) == 0 &&
477 (result = mProfile.type - another.mProfile
[all...]
/packages/apps/LegacyCamera/src/com/android/camera/
H A DEffectsRecorder.java82 private CamcorderProfile mProfile; field in class:EffectsRecorder
168 mProfile = profile;
408 + mProfile.videoFrameWidth + ", " + mProfile.videoFrameHeight);
412 tmp = mProfile.videoFrameWidth;
413 mProfile.videoFrameWidth = mProfile.videoFrameHeight;
414 mProfile.videoFrameHeight = tmp;
418 "recordingWidth", mProfile.videoFrameWidth,
419 "recordingHeight", mProfile
[all...]
H A DVideoCamera.java214 private CamcorderProfile mProfile; field in class:VideoCamera
601 intent.setDataAndType(mCurrentVideoUri, convertOutputFormatToMimeType(mProfile.fileFormat));
780 mProfile = CamcorderProfile.get(mCameraId, quality);
794 mDesiredPreviewWidth = mProfile.videoFrameWidth;
795 mDesiredPreviewHeight = mProfile.videoFrameHeight;
809 (double) mProfile.videoFrameWidth / mProfile.videoFrameHeight);
819 (double) mProfile.videoFrameWidth / mProfile.videoFrameHeight);
1203 mMediaRecorder.setProfile(mProfile);
[all...]
/packages/apps/Camera/src/com/android/camera/
H A DEffectsRecorder.java140 private CamcorderProfile mProfile; field in class:EffectsRecorder
340 mProfile = profile;
583 int videoFrameWidth = mProfile.videoFrameWidth;
584 int videoFrameHeight = mProfile.videoFrameHeight;
596 "recordingProfile", mProfile,
711 if (mProfile == null) {
916 setInputValue(recorder, "recordingProfile", mProfile);
H A DVideoModule.java188 private CamcorderProfile mProfile; field in class:VideoModule
611 intent.setDataAndType(mCurrentVideoUri, convertOutputFormatToMimeType(mProfile.fileFormat));
744 mProfile = CamcorderProfile.get(mCameraId, quality);
760 mDesiredPreviewWidth = mProfile.videoFrameWidth;
761 mDesiredPreviewHeight = mProfile.videoFrameHeight;
775 (double) mProfile.videoFrameWidth / mProfile.videoFrameHeight);
780 mDesiredPreviewWidth = mProfile.videoFrameWidth;
781 mDesiredPreviewHeight = mProfile.videoFrameHeight;
789 (double) mProfile
[all...]
/packages/apps/Camera2/src/com/android/camera/
H A DVideoModule.java160 private CamcorderProfile mProfile; field in class:VideoModule
616 intent.setDataAndType(mCurrentVideoUri, convertOutputFormatToMimeType(mProfile.fileFormat));
762 mProfile = CamcorderProfile.get(mCameraId, quality);
769 mCameraSettings, mCameraCapabilities, mProfile, mUI.getPreviewScreenSize());
822 mUI.setAspectRatio((float) mProfile.videoFrameWidth / mProfile.videoFrameHeight);
1104 mMediaRecorder.setProfile(mProfile);
1105 mMediaRecorder.setVideoSize(mProfile.videoFrameWidth, mProfile.videoFrameHeight);
1116 generateVideoFilename(mProfile
[all...]

Completed in 1332 milliseconds