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

123456

/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.aidl36 void callSessionProgressing(in IImsCallSession session, in ImsStreamMediaProfile profile);
37 void callSessionStarted(in IImsCallSession session, in ImsCallProfile profile);
44 void callSessionHeld(in IImsCallSession session, in ImsCallProfile profile);
46 void callSessionHoldReceived(in IImsCallSession session, in ImsCallProfile profile);
47 void callSessionResumed(in IImsCallSession session, in ImsCallProfile profile);
49 void callSessionResumeReceived(in IImsCallSession session, in ImsCallProfile profile);
55 in IImsCallSession newSession, in ImsCallProfile profile);
64 in ImsCallProfile profile);
68 in ImsCallProfile profile);
74 in IImsCallSession newSession, in ImsCallProfile profile);
[all...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DCachedBluetoothDevice.java94 * Last time a bt profile auto-connect was attempted.
109 * Describes the current device and profile for logging.
111 * @param profile Profile to describe
112 * @return Description of the device and profile
114 private String describe(LocalBluetoothProfile profile) { argument
117 if (profile != null) {
118 sb.append(" Profile:").append(profile);
124 void onProfileStateChanged(LocalBluetoothProfile profile, int newProfileState) { argument
126 Log.d(TAG, "onProfileStateChanged: profile " + profile
186 disconnect(LocalBluetoothProfile profile) argument
262 connectProfile(LocalBluetoothProfile profile) argument
271 connectInt(LocalBluetoothProfile profile) argument
338 getProfileConnectionState(LocalBluetoothProfile profile) argument
459 isConnectedProfile(LocalBluetoothProfile profile) argument
[all...]
H A DLocalBluetoothProfileManager.java92 * Mapping from profile name, e.g. "HEADSET" to profile object.
127 if(DEBUG) Log.d(TAG, "Adding local MAP profile");
133 //Create PBAP server profile, but do not add it to list of profiles
134 // as we do not need to monitor the profile as part of profile list
141 * Initialize or update the local profile objects. If a UUID was previously
143 * profile object as it might be referenced elsewhere, or the UUID might
144 * come back and we don't want multiple copies of the profile objects.
151 if(DEBUG) Log.d(TAG, "Adding local A2DP SRC profile");
236 addProfile(LocalBluetoothProfile profile, String profileName, String stateChangedAction) argument
242 addPanProfile(LocalBluetoothProfile profile, String profileName, String stateChangedAction) argument
268 StateChangedHandler(LocalBluetoothProfile profile) argument
294 PanStateChangedHandler(LocalBluetoothProfile profile) argument
[all...]
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsCallSessionListenerBase.java34 public void callSessionProgressing(IImsCallSession session, ImsStreamMediaProfile profile) { argument
39 public void callSessionStarted(IImsCallSession session, ImsCallProfile profile) { argument
57 public void callSessionHeld(IImsCallSession session, ImsCallProfile profile) { argument
67 public void callSessionHoldReceived(IImsCallSession session, ImsCallProfile profile) { argument
72 public void callSessionResumed(IImsCallSession session, ImsCallProfile profile) { argument
82 public void callSessionResumeReceived(IImsCallSession session, ImsCallProfile profile) { argument
91 ImsCallProfile profile) {
110 public void callSessionUpdated(IImsCallSession session, ImsCallProfile profile) { argument
120 public void callSessionUpdateReceived(IImsCallSession session, ImsCallProfile profile) { argument
129 ImsCallProfile profile) {
90 callSessionMergeStarted(IImsCallSession session, IImsCallSession newSession, ImsCallProfile profile) argument
128 callSessionConferenceExtended(IImsCallSession session, IImsCallSession newSession, ImsCallProfile profile) argument
140 callSessionConferenceExtendReceived(IImsCallSession session, IImsCallSession newSession, ImsCallProfile profile) argument
[all...]
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioProfile.h139 ssize_t add(const sp<AudioProfile> &profile) argument
141 ssize_t index = Vector::add(profile);
152 // for a profile with dynamic format, rate and channels attributes
155 // Check valid profile to add:
173 // Go through the list of profile to avoid duplicates
175 const sp<AudioProfile> &profile = itemAt(profileIndex); local
176 if (profile->isValid() && profile == profileToAdd) {
234 sp<AudioProfile> profile = itemAt(i); local
235 if (profile
245 sp<AudioProfile> profile = itemAt(i); local
262 sp<AudioProfile> profile = new AudioProfile(formats[i], local
275 sp<AudioProfile> profile = itemAt(--i); local
302 sp<AudioProfile> profile = itemAt(i); local
321 sp<AudioProfile> profile = itemAt(i); local
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiConfigurationUtil.java42 for (UserInfo profile : profiles) {
43 if (profile.id == creatorUserId) {
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothManager.java78 * Get the current connection state of the profile to the remote device.
81 * the connection state of the local Bluetooth adapter for certain profile.
88 * @param profile GATT or GATT_SERVER
89 * @return State of the profile connection. One of
95 public int getConnectionState(BluetoothDevice device, int profile) { argument
98 List<BluetoothDevice> connectedDevices = getConnectedDevices(profile);
109 * Get connected devices for the specified profile.
114 * the connection state of Bluetooth for this profile.
120 * @param profile GATT or GATT_SERVER
124 public List<BluetoothDevice> getConnectedDevices(int profile) { argument
169 getDevicesMatchingConnectionStates(int profile, int[] states) argument
[all...]
H A DIBluetoothManager.aidl42 boolean bindBluetoothProfileService(int profile, IBluetoothProfileServiceConnection proxy);
43 void unbindBluetoothProfileService(int profile, IBluetoothProfileServiceConnection proxy);
H A DBluetoothProfile.java29 * to get the Profile Proxy. Each public profile implements this
37 * This extra represents the current connection state of the profile of the
40 public static final String EXTRA_STATE = "android.bluetooth.profile.extra.STATE";
45 * This extra represents the previous connection state of the profile of the
49 "android.bluetooth.profile.extra.PREVIOUS_STATE";
51 /** The profile is in disconnected state */
53 /** The profile is in connecting state */
55 /** The profile is in connected state */
57 /** The profile is in disconnecting state */
61 * Headset and Handsfree profile
221 onServiceConnected(int profile, BluetoothProfile proxy) argument
229 onServiceDisconnected(int profile) argument
[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.parseInt(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/base/core/java/com/android/internal/os/
H A DCameraPowerCalculator.java28 public CameraPowerCalculator(PowerProfile profile) { argument
29 mCameraPowerOnAvg = profile.getAveragePower(PowerProfile.POWER_CAMERA);
H A DFlashlightPowerCalculator.java26 public FlashlightPowerCalculator(PowerProfile profile) { argument
27 mFlashlightPowerOnAvg = profile.getAveragePower(PowerProfile.POWER_FLASHLIGHT);
H A DWifiPowerEstimator.java33 public WifiPowerEstimator(PowerProfile profile) { argument
34 mWifiPowerPerPacket = getWifiPowerPerPacket(profile);
35 mWifiPowerOn = profile.getAveragePower(PowerProfile.POWER_WIFI_ON);
36 mWifiPowerScan = profile.getAveragePower(PowerProfile.POWER_WIFI_SCAN);
37 mWifiPowerBatchScan = profile.getAveragePower(PowerProfile.POWER_WIFI_BATCHED_SCAN);
43 private static double getWifiPowerPerPacket(PowerProfile profile) { argument
45 final double WIFI_POWER = profile.getAveragePower(PowerProfile.POWER_WIFI_ACTIVE)
/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/opt/net/ims/src/java/com/android/ims/internal/
H A DImsCallSession.java103 ImsStreamMediaProfile profile) {
113 ImsCallProfile profile) {
143 ImsCallProfile profile) {
162 ImsCallProfile profile) {
171 ImsCallProfile profile) {
190 ImsCallProfile profile) {
202 ImsCallSession newSession, ImsCallProfile profile) {
229 ImsCallProfile profile) {
248 ImsCallProfile profile) {
260 ImsCallSession newSession, ImsCallProfile profile) {
102 callSessionProgressing(ImsCallSession session, ImsStreamMediaProfile profile) argument
112 callSessionStarted(ImsCallSession session, ImsCallProfile profile) argument
142 callSessionHeld(ImsCallSession session, ImsCallProfile profile) argument
161 callSessionHoldReceived(ImsCallSession session, ImsCallProfile profile) argument
170 callSessionResumed(ImsCallSession session, ImsCallProfile profile) argument
189 callSessionResumeReceived(ImsCallSession session, ImsCallProfile profile) argument
201 callSessionMergeStarted(ImsCallSession session, ImsCallSession newSession, ImsCallProfile profile) argument
228 callSessionUpdated(ImsCallSession session, ImsCallProfile profile) argument
247 callSessionUpdateReceived(ImsCallSession session, ImsCallProfile profile) argument
259 callSessionConferenceExtended(ImsCallSession session, ImsCallSession newSession, ImsCallProfile profile) argument
278 callSessionConferenceExtendReceived(ImsCallSession session, ImsCallSession newSession, ImsCallProfile profile) argument
653 start(String callee, ImsCallProfile profile) argument
675 start(String[] participants, ImsCallProfile profile) argument
693 accept(int callType, ImsStreamMediaProfile profile) argument
743 hold(ImsStreamMediaProfile profile) argument
761 resume(ImsStreamMediaProfile profile) argument
796 update(int callType, ImsStreamMediaProfile profile) argument
955 callSessionProgressing(IImsCallSession session, ImsStreamMediaProfile profile) argument
963 callSessionStarted(IImsCallSession session, ImsCallProfile profile) argument
990 callSessionHeld(IImsCallSession session, ImsCallProfile profile) argument
1006 callSessionHoldReceived(IImsCallSession session, ImsCallProfile profile) argument
1014 callSessionResumed(IImsCallSession session, ImsCallProfile profile) argument
1030 callSessionResumeReceived(IImsCallSession session, ImsCallProfile profile) argument
1045 callSessionMergeStarted(IImsCallSession session, IImsCallSession newSession, ImsCallProfile profile) argument
1098 callSessionUpdated(IImsCallSession session, ImsCallProfile profile) argument
1114 callSessionUpdateReceived(IImsCallSession session, ImsCallProfile profile) argument
1125 callSessionConferenceExtended(IImsCallSession session, IImsCallSession newSession, ImsCallProfile profile) argument
1142 callSessionConferenceExtendReceived(IImsCallSession session, IImsCallSession newSession, ImsCallProfile profile) argument
[all...]
/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.
103 public void copyFrom(ImsStreamMediaProfile profile) { argument
104 mAudioQuality = profile.mAudioQuality;
105 mAudioDirection = profile.mAudioDirection;
106 mVideoQuality = profile.mVideoQuality;
107 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/av/media/libmedia/
H A DMediaProfiles.cpp333 MediaProfiles::CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; local
334 profile->mCameraId = cameraId;
338 profile->mFileFormat = static_cast<output_format>(fileFormat);
339 profile->mQuality = static_cast<camcorder_quality>(quality);
340 profile->mDuration = atoi(atts[5]);
341 return profile;
487 // Check high and low from either camcorder profile, timelapse profile
488 // or high speed profile, but not all of them. Default, check camcorder profile
547 CamcorderProfile *profile = local
645 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; local
662 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; local
701 MediaProfiles::CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; local
718 CamcorderProfile *profile = new MediaProfiles::CamcorderProfile; local
[all...]
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DHwModule.cpp48 sp<IOProfile> profile = new OutputProfile(name); local
50 profile->addAudioProfile(new AudioProfile(config->format, config->channel_mask,
55 profile->addSupportedDevice(devDesc);
57 return addOutputProfile(profile);
60 status_t HwModule::addOutputProfile(const sp<IOProfile> &profile) argument
62 profile->attach(this);
63 mOutputProfiles.add(profile);
64 mPorts.add(profile);
68 status_t HwModule::addInputProfile(const sp<IOProfile> &profile) argument
70 profile
76 addProfile(const sp<IOProfile> &profile) argument
111 sp<IOProfile> profile = new InputProfile(name); local
[all...]
/frameworks/native/opengl/tools/glgen2/
H A Dglgen.py226 profile = 'common',
230 profile = 'common',
236 profile = 'common',
240 profile = 'common',
255 profile = 'common'),
258 profile = 'common'),
261 profile = 'common',
266 profile = 'common',
281 profile = 'common',
286 profile
[all...]

Completed in 2549 milliseconds

123456