HomeSort by relevance Sort by last modified time
    Searched full:mprofile (Results 1 - 25 of 31) sorted by null

1 2

  /frameworks/base/voip/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/apps/Settings/src/com/android/settings/vpn2/
VpnDialog.java 44 private final VpnProfile mProfile;
71 mProfile = profile;
102 mName.setText(mProfile.name);
103 mType.setSelection(mProfile.type);
104 mServer.setText(mProfile.server);
105 if (mProfile.saveLogin) {
106 mUsername.setText(mProfile.username);
107 mPassword.setText(mProfile.password);
109 mSearchDomains.setText(mProfile.searchDomains);
110 mDnsServers.setText(mProfile.dnsServers)
    [all...]
VpnSettings.java 473 private VpnProfile mProfile;
482 mProfile = profile;
487 return mProfile;
491 mProfile = profile;
504 setSummary(types[mProfile.type]);
510 setTitle(mProfile.name);
520 (result = mProfile.name.compareTo(another.mProfile.name)) == 0 &&
521 (result = mProfile.type - another.mProfile.type) == 0)
    [all...]
  /packages/apps/Phone/src/com/android/phone/sip/
SipSettings.java 79 private SipProfile mProfile; // profile that's being edited
89 SipProfile mProfile;
96 return mProfile;
100 mProfile = p;
108 int profileUid = mProfile.getCallingUid();
109 boolean isPrimary = mProfile.getUriString().equals(
191 if (mProfile != null) {
192 Log.v(TAG, "Removed Profile:" + mProfile.getProfileName());
193 deleteProfile(mProfile);
353 handleProfileClick(((SipPreference) pref).mProfile);
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothProfileState.java 52 private int mProfile;
67 if (mProfile == HFP && (newState == BluetoothProfile.STATE_CONNECTED ||
73 if (mProfile == A2DP && (newState == BluetoothProfile.STATE_CONNECTED ||
79 if (mProfile == HID && (newState == BluetoothProfile.STATE_CONNECTED ||
93 mProfile = profile;
  /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...]
  /frameworks/av/include/media/stagefright/
MediaCodecList.h 47 uint32_t mProfile;
  /packages/apps/Settings/src/com/android/settings/bluetooth/
LocalBluetoothProfileManager.java 202 final LocalBluetoothProfile mProfile;
205 mProfile = profile;
219 Log.i(TAG, "Failed to connect " + mProfile + " device");
222 cachedDevice.onProfileStateChanged(mProfile, newState);
236 PanProfile panProfile = (PanProfile) mProfile;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
MediaEncoderFilter.java 109 private CamcorderProfile mProfile = null;
245 if (mProfile != null) {
246 mMediaRecorder.setProfile(mProfile);
247 mFps = mProfile.videoFrameRate;
309 if (mProfile != null && !widthHeightSpecified) {
310 width = mProfile.videoFrameWidth;
311 height = mProfile.videoFrameHeight;
  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipPhone.java 61 private SipProfile mProfile;
70 mProfile = profile;
79 return mProfile.getUriString().equals(that.mProfile.getUriString());
83 return "SIP:" + getUriString(mProfile);
87 return mProfile.getUriString();
111 if (localUri.equals(mProfile.getUriString())) {
390 String replaceStr = Pattern.quote(mProfile.getUserName() + "@");
391 calleeSipUri = mProfile.getUriString().replaceFirst(replaceStr,
739 mSipAudioCall = mSipManager.makeAudioCall(mProfile, mPeer, null
    [all...]
  /frameworks/wilhelm/src/android/
VideoCodec_to_android.cpp 90 if (profileLevel.mProfile == XA_VIDEOPROFILE_AVC_BASELINE) {
183 itemAt(0).mProfileLevels.itemAt(plIndex).mProfile);
  /packages/apps/Camera/src/com/android/camera/
VideoCamera.java 179 private CamcorderProfile mProfile;
541 intent.setDataAndType(mCurrentVideoUri, convertOutputFormatToMimeType(mProfile.fileFormat));
703 mProfile = CamcorderProfile.get(mCameraId, quality);
717 mDesiredPreviewWidth = mProfile.videoFrameWidth;
718 mDesiredPreviewHeight = mProfile.videoFrameHeight;
732 (double) mProfile.videoFrameWidth / mProfile.videoFrameHeight);
742 (double) mProfile.videoFrameWidth / mProfile.videoFrameHeight);
    [all...]
EffectsRecorder.java 75 private CamcorderProfile mProfile;
164 mProfile = profile;
407 int videoFrameWidth = mProfile.videoFrameWidth;
408 int videoFrameHeight = mProfile.videoFrameHeight;
419 "recordingProfile", mProfile,
526 if (mProfile == null) {
668 recorder.setInputValue("recordingProfile", mProfile);
    [all...]
  /frameworks/av/include/media/
IOMX.h 189 OMX_U32 mProfile;
MediaProfiles.h 360 :mCodec(codec),mProfile(profile),mLevel(level) {}
363 int mProfile;
  /frameworks/av/libvideoeditor/vss/stagefrightshells/src/
VideoEditorVideoDecoder.cpp 651 ALOGV("-->profile:%ld maxLevel:%ld", pProfileLevel->mProfile,
725 if (profileLevel.mProfile != profile) {
726 profile = profileLevel.mProfile;
743 profile = profileLevel.mProfile;
745 pProfileLevel->mProfile = profile;
748 __LINE__, pProfileLevel->mProfile, pProfileLevel->mLevel);
750 if (profileLevel.mProfile != profile) {
751 profile = profileLevel.mProfile;
755 pProfileLevel->mProfile = profile;
    [all...]
  /frameworks/av/media/libstagefright/
MediaCodecList.cpp 541 profileLevel.mProfile = src.mProfile;
OMXCodec.cpp 956 defaultProfileLevel.mProfile, defaultProfileLevel.mLevel);
961 profile = defaultProfileLevel.mProfile;
989 profileLevel.mProfile = profile;
1025 defaultProfileLevel.mProfile = h263type.eProfile;
1029 h263type.eProfile = static_cast<OMX_VIDEO_H263PROFILETYPE>(profileLevel.mProfile);
    [all...]
  /frameworks/base/media/jni/
android_media_MediaCodecList.cpp 131 env->SetIntField(profileLevelObj, profileField, src.mProfile);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
SoftMPEG4.cpp 222 profileLevel->eProfile = kH263ProfileLevels[index].mProfile;
231 profileLevel->eProfile = kM4VProfileLevels[index].mProfile;
  /hardware/libhardware_legacy/audio/
AudioPolicyManagerBase.cpp 606 int commonFlags = (int)AudioSystem::popCount(outputDesc->mProfile->mFlags & flags);
612 if (outputDesc->mProfile->mFlags & AUDIO_OUTPUT_FLAG_PRIMARY) {
    [all...]
  /frameworks/av/libvideoeditor/vss/common/inc/
M4DECODER_Common.h 226 M4OSA_UInt32 mProfile;
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioPolicyManagerBase.h 264 const IOProfile *mProfile; // I/O profile this output derives from
284 const IOProfile *mProfile; // I/O profile this output derives from
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothTestUtils.java 210 private int mProfile;
217 mProfile = profile;
219 switch (mProfile) {
    [all...]

Completed in 1536 milliseconds

1 2