HomeSort by relevance Sort by last modified time
    Searched refs:mProfile (Results 1 - 25 of 36) sorted by null

1 2

  /packages/apps/Camera2/src/com/android/camera/app/
FirstRunDetector.java 41 private final Profile mProfile;
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/vpn2/
ConfigPreference.java 34 private VpnProfile mProfile;
43 return mProfile;
47 mProfile = profile;
65 setTitle(mProfile.name);
75 (result = mProfile.name.compareTo(another.mProfile.name)) == 0 &&
76 (result = mProfile.type - another.mProfile.type) == 0) {
77 result = mProfile.key.compareTo(another.mProfile.key)
    [all...]
ConfigDialog.java 51 private final VpnProfile mProfile;
81 mProfile = profile;
113 mName.setText(mProfile.name);
114 mType.setSelection(mProfile.type);
115 mServer.setText(mProfile.server);
116 if (mProfile.saveLogin) {
117 mUsername.setText(mProfile.username);
118 mPassword.setText(mProfile.password);
120 mSearchDomains.setText(mProfile.searchDomains);
121 mDnsServers.setText(mProfile.dnsServers)
    [all...]
  /frameworks/opt/net/voip/src/java/android/net/sip/
SipProfile.java 81 private SipProfile mProfile = new SipProfile();
101 mProfile = (SipProfile) profile.clone();
105 mProfile.mAddress = null;
110 mProfile.mPort = profile.getPort();
129 mProfile.mDomain = mUri.getHost();
148 mProfile.mDomain = serverDomain;
164 mProfile.mAuthUserName = name;
175 mProfile.mProfileName = name;
201 mProfile.mPort = port;
223 mProfile.mProtocol = protocol
    [all...]
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipAccountRegistry.java 38 private final SipProfile mProfile;
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.getUriString())
    [all...]
SipSettings.java 75 private SipProfile mProfile; // profile that's being edited
83 SipProfile mProfile;
90 return mProfile;
94 mProfile = p;
102 int profileUid = mProfile.getCallingUid();
170 if (mProfile != null) {
171 if (VERBOSE) log("onActivityResult, remove: " + mProfile.getProfileName());
172 deleteProfile(mProfile);
279 handleProfileClick(((SipPreference) pref).mProfile);
340 mProfile = profile
    [all...]
  /packages/apps/Settings/src/com/android/settings/
AllowBindAppWidgetActivity.java 45 private UserHandle mProfile;
60 mProfile, mComponentName, null);
96 mProfile = intent.getParcelableExtra(
98 if (mProfile == null) {
99 mProfile = android.os.Process.myUserHandle();
138 mProfile.getIdentifier()));
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
AudioInputDescriptor.h 51 const sp<IOProfile> mProfile; // I/O profile this output derives from
57 virtual sp<AudioPort> getAudioPort() const { return mProfile; }
AudioOutputDescriptor.h 118 const sp<IOProfile> mProfile; // I/O profile this output derives from
  /frameworks/base/services/core/java/com/android/server/net/
LockdownVpnTracker.java 78 private final VpnProfile mProfile;
101 mProfile = Preconditions.checkNotNull(profile);
163 if (mProfile.isValidLockdownProfile()) {
172 mVpn.startLegacyVpnPrivileged(mProfile, KeyStore.getInstance(), egressProp);
235 mNetService.setFirewallEgressDestRule(mProfile.server, 500, true);
236 mNetService.setFirewallEgressDestRule(mProfile.server, 4500, true);
237 mNetService.setFirewallEgressDestRule(mProfile.server, 1701, true);
261 mNetService.setFirewallEgressDestRule(mProfile.server, 500, false);
262 mNetService.setFirewallEgressDestRule(mProfile.server, 4500, false);
263 mNetService.setFirewallEgressDestRule(mProfile.server, 1701, false)
    [all...]
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
AudioInputDescriptor.cpp 32 mInputSource(AUDIO_SOURCE_DEFAULT), mProfile(profile), mIsSoundTrigger(false), mId(0)
52 if (mProfile == 0) {
55 return mProfile->getModuleHandle();
66 ALOG_ASSERT(mProfile != 0,
86 ALOG_ASSERT(mProfile != 0, "toAudioPort() called on input with null profile %d", mIoHandle);
88 mProfile->toAudioPort(port);
175 audio_devices_t devices = inputDesc->mProfile->mSupportedDevices.types();
AudioOutputDescriptor.cpp 226 mProfile(profile), mIoHandle(0), mLatency(0),
286 return mProfile->mSupportedDevices.types() ;
476 audio_devices_t devices = outputDesc->mProfile->mSupportedDevices.types();
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
MediaEncoderFilter.java 100 private CamcorderProfile mProfile = null;
236 if (mProfile != null) {
237 mMediaRecorder.setProfile(mProfile);
238 mFps = mProfile.videoFrameRate;
300 if (mProfile != null && !widthHeightSpecified) {
301 width = mProfile.videoFrameWidth;
302 height = mProfile.videoFrameHeight;
  /packages/apps/LegacyCamera/src/com/android/camera/
EffectsRecorder.java 82 private CamcorderProfile mProfile;
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.videoFrameHeight
    [all...]
VideoCamera.java 214 private CamcorderProfile mProfile;
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)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVRecordActivity.java 380 private CamcorderProfile mProfile;
393 mProfile = null;
452 mProfile = profile;
477 return mProfile;
486 int width = mProfile.videoFrameWidth;
495 (float)mProfile.videoFrameWidth/mProfile.videoFrameHeight,
562 private CamcorderProfile mProfile;
568 mProfile = profile;
575 if (mCamera == null || mProfile ==null)
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
LocalBluetoothProfileManager.java 214 final LocalBluetoothProfile mProfile;
217 mProfile = profile;
231 Log.i(TAG, "Failed to connect " + mProfile + " device");
234 cachedDevice.onProfileStateChanged(mProfile, newState);
248 PanProfile panProfile = (PanProfile) mProfile;
  /frameworks/wilhelm/src/android/
VideoCodec_to_android.cpp 91 if (profileLevel.mProfile == XA_VIDEOPROFILE_AVC_BASELINE) {
184 itemAt(0).mProfileLevels.itemAt(plIndex).mProfile);
  /frameworks/av/include/media/
MediaCodecInfo.h 42 uint32_t mProfile;
  /frameworks/av/media/libmedia/
MediaCodecInfo.cpp 65 profileLevel.mProfile = static_cast<uint32_t>(parcel.readInt32());
91 parcel->writeInt32(mProfileLevels.itemAt(i).mProfile);
236 profileLevel.mProfile = src.mProfile;
  /packages/apps/Camera2/src/com/android/camera/
VideoModule.java 163 private CamcorderProfile mProfile;
620 intent.setDataAndType(mCurrentVideoUri, convertOutputFormatToMimeType(mProfile.fileFormat));
768 mProfile = CamcorderProfile.get(mCameraId, quality);
786 mCameraCapabilities, mProfile, mUI.getPreviewScreenSize());
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 65 private SipProfile mProfile;
74 mProfile = profile;
83 return mProfile.getUriString().equals(that.mProfile.getUriString());
87 return mProfile.getUriString();
123 if (localUri.equals(mProfile.getUriString())) {
480 String replaceStr = Pattern.quote(mProfile.getUserName() + "@");
481 calleeSipUri = mProfile.getUriString().replaceFirst(replaceStr,
860 mSipAudioCall = mSipManager.makeAudioCall(mProfile, mPeer, null,
    [all...]
  /packages/apps/Camera/src/com/android/camera/
VideoModule.java 188 private CamcorderProfile mProfile;
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.videoFrameWidth / mProfile.videoFrameHeight)
    [all...]
EffectsRecorder.java 140 private CamcorderProfile mProfile;
340 mProfile = profile;
583 int videoFrameWidth = mProfile.videoFrameWidth;
584 int videoFrameHeight = mProfile.videoFrameHeight;
596 "recordingProfile", mProfile,
711 if (mProfile == null) {
    [all...]
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioPolicyManagerBase.h 286 const IOProfile *mProfile; // I/O profile this output derives from
309 const IOProfile *mProfile; // I/O profile this output derives from

Completed in 923 milliseconds

1 2