Searched refs:profile (Results 1 - 25 of 91) sorted by relevance

1234

/frameworks/base/telephony/java/com/android/ims/internal/
H A DIImsCallSession.aidl44 * Gets the call profile that this session is associated with
46 * @return the call profile that this session is associated with
51 * Gets the local call profile that this session is associated with
53 * @return the local call profile that this session is associated with
58 * Gets the remote call profile that this session is associated with
60 * @return the remote call profile that this session is associated with
103 * Initiates an IMS call with the specified target and call profile.
109 * @param profile call profile to make the call with the specified service type,
113 void start(String callee, in ImsCallProfile profile);
[all...]
H A DIImsCallSessionListener.aidl35 void callSessionProgressing(in IImsCallSession session, in ImsStreamMediaProfile profile);
36 void callSessionStarted(in IImsCallSession session, in ImsCallProfile profile);
43 void callSessionHeld(in IImsCallSession session, in ImsCallProfile profile);
45 void callSessionHoldReceived(in IImsCallSession session, in ImsCallProfile profile);
46 void callSessionResumed(in IImsCallSession session, in ImsCallProfile profile);
48 void callSessionResumeReceived(in IImsCallSession session, in ImsCallProfile profile);
54 in IImsCallSession newSession, in ImsCallProfile profile);
63 in ImsCallProfile profile);
67 in ImsCallProfile profile);
73 in IImsCallSession newSession, in ImsCallProfile profile);
[all...]
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
H A DImsCallSession.java99 ImsStreamMediaProfile profile) {
109 ImsCallProfile profile) {
139 ImsCallProfile profile) {
158 ImsCallProfile profile) {
167 ImsCallProfile profile) {
186 ImsCallProfile profile) {
198 ImsCallSession newSession, ImsCallProfile profile) {
225 ImsCallProfile profile) {
244 ImsCallProfile profile) {
256 ImsCallSession newSession, ImsCallProfile profile) {
98 callSessionProgressing(ImsCallSession session, ImsStreamMediaProfile profile) argument
108 callSessionStarted(ImsCallSession session, ImsCallProfile profile) argument
138 callSessionHeld(ImsCallSession session, ImsCallProfile profile) argument
157 callSessionHoldReceived(ImsCallSession session, ImsCallProfile profile) argument
166 callSessionResumed(ImsCallSession session, ImsCallProfile profile) argument
185 callSessionResumeReceived(ImsCallSession session, ImsCallProfile profile) argument
197 callSessionMergeStarted(ImsCallSession session, ImsCallSession newSession, ImsCallProfile profile) argument
224 callSessionUpdated(ImsCallSession session, ImsCallProfile profile) argument
243 callSessionUpdateReceived(ImsCallSession session, ImsCallProfile profile) argument
255 callSessionConferenceExtended(ImsCallSession session, ImsCallSession newSession, ImsCallProfile profile) argument
274 callSessionConferenceExtendReceived(ImsCallSession session, ImsCallSession newSession, ImsCallProfile profile) argument
628 start(String callee, ImsCallProfile profile) argument
650 start(String[] participants, ImsCallProfile profile) argument
668 accept(int callType, ImsStreamMediaProfile profile) argument
718 hold(ImsStreamMediaProfile profile) argument
736 resume(ImsStreamMediaProfile profile) argument
771 update(int callType, ImsStreamMediaProfile profile) argument
930 callSessionProgressing(IImsCallSession session, ImsStreamMediaProfile profile) argument
938 callSessionStarted(IImsCallSession session, ImsCallProfile profile) argument
965 callSessionHeld(IImsCallSession session, ImsCallProfile profile) argument
981 callSessionHoldReceived(IImsCallSession session, ImsCallProfile profile) argument
989 callSessionResumed(IImsCallSession session, ImsCallProfile profile) argument
1005 callSessionResumeReceived(IImsCallSession session, ImsCallProfile profile) argument
1020 callSessionMergeStarted(IImsCallSession session, IImsCallSession newSession, ImsCallProfile profile) argument
1058 callSessionUpdated(IImsCallSession session, ImsCallProfile profile) argument
1074 callSessionUpdateReceived(IImsCallSession session, ImsCallProfile profile) argument
1085 callSessionConferenceExtended(IImsCallSession session, IImsCallSession newSession, ImsCallProfile profile) argument
1102 callSessionConferenceExtendReceived(IImsCallSession session, IImsCallSession newSession, ImsCallProfile profile) argument
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothManager.java76 * Get the current connection state of the profile to the remote device.
79 * the connection state of the local Bluetooth adapter for certain profile.
86 * @param profile GATT or GATT_SERVER
87 * @return State of the profile connection. One of
92 public int getConnectionState(BluetoothDevice device, int profile) { argument
95 List<BluetoothDevice> connectedDevices = getConnectedDevices(profile);
106 * Get connected devices for the specified profile.
111 * the connection state of Bluetooth for this profile.
117 * @param profile GATT or GATT_SERVER
120 public List<BluetoothDevice> getConnectedDevices(int profile) { argument
164 getDevicesMatchingConnectionStates(int profile, int[] states) argument
[all...]
H A DBluetoothProfile.java26 * to get the Profile Proxy. Each public profile implements this
34 * This extra represents the current connection state of the profile of the
37 public static final String EXTRA_STATE = "android.bluetooth.profile.extra.STATE";
42 * This extra represents the previous connection state of the profile of the
46 "android.bluetooth.profile.extra.PREVIOUS_STATE";
48 /** The profile is in disconnected state */
50 /** The profile is in connecting state */
52 /** The profile is in connected state */
54 /** The profile is in disconnecting state */
58 * Headset and Handsfree profile
203 onServiceConnected(int profile, BluetoothProfile proxy) argument
211 onServiceDisconnected(int profile) argument
[all...]
H A DIBluetoothManager.aidl42 boolean bindBluetoothProfileService(int profile, IBluetoothProfileServiceConnection proxy);
43 void unbindBluetoothProfileService(int profile, IBluetoothProfileServiceConnection proxy);
H A DBluetoothClass.java288 * Check class bits for possible bluetooth profile support.
290 * given class bits might support specified profile. It is not accurate for all
292 * @param profile The profile to be checked
293 * @return True if this device might support specified profile.
296 public boolean doesClassMatch(int profile) { argument
297 if (profile == PROFILE_A2DP) {
313 } else if (profile == PROFILE_HEADSET) {
328 } else if (profile == PROFILE_OPP) {
351 } else if (profile
[all...]
/frameworks/base/core/java/com/android/internal/net/
H A DVpnProfile.java126 VpnProfile profile = new VpnProfile(key);
127 profile.name = values[0];
128 profile.type = Integer.valueOf(values[1]);
129 if (profile.type < 0 || profile.type > TYPE_MAX) {
132 profile.server = values[2];
133 profile.username = values[3];
134 profile.password = values[4];
135 profile.dnsServers = values[5];
136 profile
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhoneFactory.java42 SipProfile profile = new SipProfile.Builder(sipUri).build();
43 return new SipPhone(context, phoneNotifier, profile);
/frameworks/av/media/libstagefright/codecs/aacenc/inc/
H A Dbitenc.h36 Word16 profile; member in struct:BITSTREAMENCODER_INIT
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DMediaRecorderStressTestRunner.java36 public static CamcorderProfile profile = CamcorderProfile.get(mCameraId, mProfileQuality); field in class:MediaRecorderStressTestRunner
38 public static int mVideoEncoder = profile.videoCodec;
39 public static int mAudioEncoder = profile.audioCodec;
40 public static int mFrameRate = profile.videoFrameRate;
41 public static int mVideoWidth = profile.videoFrameWidth;
42 public static int mVideoHeight = profile.videoFrameHeight;
43 public static int mBitRate = profile.videoBitRate;
/frameworks/av/media/libstagefright/wifi-display/
H A DVideoFormats.h42 unsigned char profile, level; member in struct:android::VideoFormats::config_t
74 ProfileType profile, LevelType level);
83 ProfileType profile, LevelType level);
87 ProfileType *profile, LevelType *level) const;
95 ProfileType profile, LevelType level,
H A DVideoFormats.cpp166 mConfigs[i][j].profile = mConfigs[i][j].level = 0;
175 mConfigs[i][j].profile = (1ul << PROFILE_CBP);
183 ProfileType profile, LevelType level) {
198 setProfileLevel((ResolutionType)i, j, profile, level);
211 mConfigs[type][index].profile = (1ul << PROFILE_CBP);
215 mConfigs[type][index].profile = 0;
222 ProfileType profile, LevelType level) {
226 mConfigs[type][index].profile = (1ul << profile);
232 ProfileType *profile, LevelTyp
181 enableResolutionUpto( ResolutionType type, size_t index, ProfileType profile, LevelType level) argument
220 setProfileLevel( ResolutionType type, size_t index, ProfileType profile, LevelType level) argument
230 getProfileLevel( ResolutionType type, size_t index, ProfileType *profile, LevelType *level) const argument
307 unsigned profile, level, res[3]; local
340 GetProfileLevel( ProfileType profile, LevelType level, unsigned *profileIdc, unsigned *levelIdc, unsigned *constraintSet) argument
[all...]
/frameworks/base/telephony/java/com/android/ims/
H A DImsStreamMediaProfile.java23 * Parcelable object to handle IMS stream media profile.
93 public void copyFrom(ImsStreamMediaProfile profile) { argument
94 mAudioQuality = profile.mAudioQuality;
95 mAudioDirection = profile.mAudioDirection;
96 mVideoQuality = profile.mVideoQuality;
97 mVideoDirection = profile.mVideoDirection;
/frameworks/native/opengl/tools/glgen2/registry/
H A Dgenheaders.py29 # profile - enable Python profiling
37 profile = False variable
61 elif (arg == '-profile'):
62 write('Enabling profiling (-profile)', file=sys.stderr)
63 profile = True variable
197 '/* glcorearb.h is for use with OpenGL core profile implementations.',
201 '** glcorearb.h includes only APIs in the latest OpenGL core profile',
203 '** can be supported by the core profile. It does not, and never will',
204 '** include functionality removed from the core profile, such as',
273 profile
[all...]
/frameworks/base/media/java/android/media/
H A DMediaRecorder.java400 * @param profile the CamcorderProfile to use
403 public void setProfile(CamcorderProfile profile) { argument
404 setOutputFormat(profile.fileFormat);
405 setVideoFrameRate(profile.videoFrameRate);
406 setVideoSize(profile.videoFrameWidth, profile.videoFrameHeight);
407 setVideoEncodingBitRate(profile.videoBitRate);
408 setVideoEncoder(profile.videoCodec);
409 if (profile.quality >= CamcorderProfile.QUALITY_TIME_LAPSE_LOW &&
410 profile
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DBluetoothControllerImpl.java64 // value of earlier states. So if a device has a profile in CONNECTING and one in
244 // When connecting add every profile we can recognize by uuid.
246 final int profile = uuidToProfile(uuid);
247 if (profile == 0) {
252 final boolean connected = info.connectedProfiles.get(profile, false);
254 profiles.put(profile, true);
258 // When disconnecting, just add every profile we know they are connected to.
262 final int profile = profiles.keyAt(i);
263 if (mProfiles.indexOfKey(profile) >= 0) {
264 final Profile p = BluetoothUtil.getProfile(mProfiles.get(profile));
290 updateConnectionState(BluetoothDevice device, int profile, int state) argument
340 handleUpdateConnectionState(BluetoothDevice device, int profile, int state) argument
[all...]
H A DBluetoothUtil.java35 public static String profileToString(int profile) { argument
36 if (profile == BluetoothProfile.HEADSET) return "HEADSET";
37 if (profile == BluetoothProfile.A2DP) return "A2DP";
38 if (profile == BluetoothProfile.AVRCP_CONTROLLER) return "AVRCP_CONTROLLER";
39 if (profile == BluetoothProfile.PAN) return "PAN";
40 if (profile == BluetoothProfile.INPUT_DEVICE) return "INPUT_DEVICE";
41 if (profile == BluetoothProfile.MAP) return "MAP";
42 return "UNKNOWN(" + profile + ")";
/frameworks/native/opengl/tools/glgen2/
H A Dglgen.py236 profile = 'common',
240 profile = 'common',
246 profile = 'common',
250 profile = 'common',
265 profile = 'common'),
268 profile = 'common'),
271 profile = 'common',
276 profile = 'common',
293 profile = 'common',
298 profile
[all...]
/frameworks/av/media/libmedia/
H A DMediaProfiles.cpp341 MediaProfiles::CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; local
342 profile->mCameraId = cameraId;
346 profile->mFileFormat = static_cast<output_format>(fileFormat);
347 profile->mQuality = static_cast<camcorder_quality>(quality);
348 profile->mDuration = atoi(atts[5]);
349 return profile;
404 !strcmp("profile", atts[2]) &&
412 MediaProfiles::ExportVideoProfile *profile = local
416 return profile;
536 // Check high and low from either camcorder profile, timelaps
596 CamcorderProfile *profile = local
694 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; local
711 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; local
746 MediaProfiles::CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; local
763 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; local
[all...]
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DVpn.java854 public void startLegacyVpn(VpnProfile profile, KeyStore keyStore, LinkProperties egress) { argument
858 startLegacyVpnPrivileged(profile, keyStore, egress);
870 public void startLegacyVpnPrivileged(VpnProfile profile, KeyStore keyStore, argument
890 if (!profile.ipsecUserCert.isEmpty()) {
891 privateKey = Credentials.USER_PRIVATE_KEY + profile.ipsecUserCert;
892 byte[] value = keyStore.get(Credentials.USER_CERTIFICATE + profile.ipsecUserCert);
895 if (!profile.ipsecCaCert.isEmpty()) {
896 byte[] value = keyStore.get(Credentials.CA_CERTIFICATE + profile.ipsecCaCert);
899 if (!profile.ipsecServerCert.isEmpty()) {
900 byte[] value = keyStore.get(Credentials.USER_CERTIFICATE + profile
[all...]
/frameworks/av/media/libstagefright/include/
H A Davc_utils.h58 const char *AVCProfileToString(uint8_t profile);
61 unsigned profile, unsigned sampling_freq_index,
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipProfile.java36 * Defines a SIP profile, including a SIP account, domain and server information.
96 * Creates a builder based on the given profile.
98 public Builder(SipProfile profile) { argument
99 if (profile == null) throw new NullPointerException();
101 mProfile = (SipProfile) profile.clone();
106 mUri = profile.getUri();
107 mUri.setUserPassword(profile.getPassword());
108 mDisplayName = profile.getDisplayName();
109 mProxyAddress = profile.getProxyAddress();
110 mProfile.mPort = profile
[all...]
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsCall.java414 // Call profile of the current session.
417 // Call profile to be updated after the application's action (accept/reject)
454 * @param profile the call profile to make/take a call
456 public ImsCall(Context context, ImsCallProfile profile) { argument
458 mCallProfile = profile;
518 * Gets the negotiated (local & remote) call profile.
520 * @return a {@link ImsCallProfile} object that has the negotiated call profile
529 * Gets the local call profile (local capabilities).
531 * @return a {@link ImsCallProfile} object that has the local call profile
925 accept(int callType, ImsStreamMediaProfile profile) argument
1406 createNewCall(ImsCallSession session, ImsCallProfile profile) argument
1910 callSessionProgressing(ImsCallSession session, ImsStreamMediaProfile profile) argument
1939 callSessionStarted(ImsCallSession session, ImsCallProfile profile) argument
2039 callSessionHeld(ImsCallSession session, ImsCallProfile profile) argument
2118 callSessionHoldReceived(ImsCallSession session, ImsCallProfile profile) argument
2147 callSessionResumed(ImsCallSession session, ImsCallProfile profile) argument
2219 callSessionResumeReceived(ImsCallSession session, ImsCallProfile profile) argument
2247 callSessionMergeStarted(ImsCallSession session, ImsCallSession newSession, ImsCallProfile profile) argument
2333 callSessionUpdated(ImsCallSession session, ImsCallProfile profile) argument
2390 callSessionUpdateReceived(ImsCallSession session, ImsCallProfile profile) argument
2419 callSessionConferenceExtended(ImsCallSession session, ImsCallSession newSession, ImsCallProfile profile) argument
2486 callSessionConferenceExtendReceived(ImsCallSession session, ImsCallSession newSession, ImsCallProfile profile) argument
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTPAssembler.h50 unsigned profile,

Completed in 5100 milliseconds

1234