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

/packages/apps/Settings/src/com/android/settings/vpn2/
H A DLegacyVpnPreference.java33 private VpnProfile mProfile; field in class:LegacyVpnPreference
41 return mProfile;
45 final String oldLabel = (mProfile != null ? mProfile.name : null);
51 mProfile = profile;
60 (result = mProfile.name.compareToIgnoreCase(another.mProfile.name)) == 0 &&
61 (result = mProfile.type - another.mProfile.type) == 0) {
62 result = mProfile
[all...]
H A DConfigDialog.java54 private final VpnProfile mProfile; field in class:ConfigDialog
86 mProfile = profile;
120 mName.setText(mProfile.name);
121 mType.setSelection(mProfile.type);
122 mServer.setText(mProfile.server);
123 if (mProfile.saveLogin) {
124 mUsername.setText(mProfile.username);
125 mPassword.setText(mProfile.password);
127 mSearchDomains.setText(mProfile.searchDomains);
128 mDnsServers.setText(mProfile
[all...]
/packages/apps/Camera2/src/com/android/camera/app/
H A DFirstRunDetector.java41 private final Profile mProfile; field in class:FirstRunDetector
47 mProfile = profiler.create("FirstRunDetector getTimeOfFirstRun");
78 mProfile.start();
81 mProfile.mark("PreferenceManager.getDefaultSharedPreferences");
85 mProfile.mark("preferences.getLong");
91 mProfile.mark("getSharedPreferences");
101 mProfile.mark("preferences.edit()");
108 mProfile.stop();
/packages/apps/Settings/src/com/android/settings/
H A DAllowBindAppWidgetActivity.java46 private UserHandle mProfile; field in class:AllowBindAppWidgetActivity
60 mProfile, mComponentName, mBindOptions);
99 mProfile = intent.getParcelableExtra(
101 if (mProfile == null) {
102 mProfile = android.os.Process.myUserHandle();
142 mProfile.getIdentifier()));
/packages/apps/Car/Settings/src/com/android/car/settings/bluetooth/
H A DBluetoothProfileLineItem.java30 * Represents a line item for a Bluetooth mProfile.
34 private final LocalBluetoothProfile mProfile; field in class:BluetoothProfileLineItem
49 mProfile = profile;
56 mCachedDevice.disconnect(mProfile);
57 mProfile.setPreferred(mCachedDevice.getDevice(), false);
58 } else if (mProfile.isPreferred(mCachedDevice.getDevice())) {
59 if (mProfile instanceof PanProfile) {
60 mCachedDevice.connectProfile(mProfile);
62 mProfile.setPreferred(mCachedDevice.getDevice(), false);
65 mProfile
[all...]
/packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
H A DDeviceProfilesSettingsTest.java70 @Mock A2dpProfile mProfile; field in class:DeviceProfilesSettingsTest
80 when(mProfile.getNameResource(any())).thenReturn(R.string.bluetooth_profile_a2dp);
82 mProfiles.add(mProfile);
98 when(mProfile.supportsHighQualityAudio(any())).thenReturn(true);
99 when(mProfile.isHighQualityAudioEnabled(any())).thenReturn(true);
100 when(mProfile.isPreferred(any())).thenReturn(true);
112 verify(mProfile).setHighQualityAudioEnabled(any(), eq(false));
114 verify(mProfile).setHighQualityAudioEnabled(any(), eq(true));
119 when(mProfile.supportsHighQualityAudio(any())).thenReturn(true);
120 when(mProfile
[all...]
/packages/services/Telephony/sip/src/com/android/services/telephony/sip/
H A DSipAccountRegistry.java37 private final SipProfile mProfile; field in class:SipAccountRegistry.AccountEntry
40 mProfile = profile;
44 return mProfile;
58 if (VERBOSE) log("startSipService, profile: " + mProfile);
62 sipManager.close(mProfile.getUriString());
67 mProfile,
69 mProfile.getProfileName()),
72 sipManager.open(mProfile);
76 log("startSipService, profile: " + mProfile.getProfileName() +
92 sipManager.close(mProfile
[all...]
H A DSipSettings.java68 private SipProfile mProfile; // profile that's being edited field in class:SipSettings
76 SipProfile mProfile; field in class:SipSettings.SipPreference
83 return mProfile;
87 mProfile = p;
95 int profileUid = mProfile.getCallingUid();
163 if (mProfile != null) {
164 if (VERBOSE) log("onActivityResult, remove: " + mProfile.getProfileName());
165 deleteProfile(mProfile);
277 handleProfileClick(((SipPreference) pref).mProfile);
338 mProfile
[all...]
/packages/services/Car/service/src/com/android/car/
H A DBluetoothDevicesInfo.java62 private int mProfile; field in class:BluetoothDevicesInfo.ConnectionInfo
82 mProfile = profile;
470 + mConnectionInfo.mProfile + " "
516 Log.d(TAG, mConnectionInfo.mProfile + " connected to " + device);
573 "Profile: " + mConnectionInfo.mProfile + " Number of Active Connections: "
666 return mConnectionInfo.mProfile;
715 Log.d(TAG, "Profile: " + mConnectionInfo.mProfile + " Num of connections: "
726 Log.d(TAG, "Connected devices for profile " + mConnectionInfo.mProfile);
/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/Camera2/src/com/android/camera/
H A DVideoModule.java163 private CamcorderProfile mProfile; field in class:VideoModule
620 intent.setDataAndType(mCurrentVideoUri, convertOutputFormatToMimeType(mProfile.fileFormat));
768 mProfile = CamcorderProfile.get(mCameraId, quality);
786 mCameraCapabilities, mProfile, mUI.getPreviewScreenSize());
853 mUI.setAspectRatio((float) mProfile.videoFrameWidth / mProfile.videoFrameHeight);
1145 mMediaRecorder.setProfile(mProfile);
1146 mMediaRecorder.setVideoSize(mProfile.videoFrameWidth, mProfile.videoFrameHeight);
1157 generateVideoFilename(mProfile
[all...]

Completed in 2373 milliseconds