Searched refs:profile (Results 51 - 75 of 136) sorted by relevance

123456

/frameworks/av/services/audiopolicy/engineconfigurable/src/
H A DEngine.cpp179 const audio_stream_type_t &profile)
182 profile)) {
183 mPolicyEngine->mApmObserver->getVolumeCurves().switchVolumeCurve(profile, stream);
178 setVolumeProfileForStream(const audio_stream_type_t &stream, const audio_stream_type_t &profile) argument
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsServiceBase.java81 public IImsCallSession createCallSession(int serviceId, ImsCallProfile profile, argument
83 return onCreateCallSession(serviceId, profile, listener);
174 protected IImsCallSession onCreateCallSession(int serviceId, ImsCallProfile profile, argument
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetManager.java108 * <td>An optional handle to a user profile under which runs the provider
220 * An intent extra that contains the user handle of the profile under
673 * Gets the AppWidget providers for the given user profile. User profile can only
674 * be the current user or a profile of the current user. For example, the current
675 * user may have a corporate profile. In this case the parent user profile has a
676 * child profile, the corporate one.
678 * @param profile The profile fo
685 getInstalledProvidersForProfile(@ullable UserHandle profile) argument
741 getInstalledProvidersForProfile(int categoryFilter, UserHandle profile) argument
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DCpuPowerCalculator.java27 public CpuPowerCalculator(PowerProfile profile) { argument
28 mProfile = profile;
/frameworks/av/cmds/stagefright/
H A Drecordvideo.cpp52 fprintf(stderr, " -p encoder profile. see omx il header (default: encoder specific)\n");
175 int profile = -1; // Encoder specific default local
237 profile = atoi(optarg);
298 if (profile != -1) {
299 enc_meta->setInt32("profile", profile);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/inc/
H A DH264SwDecApi.h120 u32 profile; member in struct:__anon518
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothAdapter.java374 * Bluetooth adapter to a profile of the remote device. When the adapter is
376 * connection to a profile this intent will sent. Once connected, this intent
378 * remote device. When the adapter disconnects from the last profile its
382 * whether the local adapter is connected to any profile of any device and
383 * are not really concerned about which profile. For example, an application
452 /** The profile is in disconnected state */
454 /** The profile is in connecting state */
456 /** The profile is in connected state */
458 /** The profile is in disconnecting state */
1497 * to any profile o
1536 getProfileConnectionState(int profile) argument
1888 getProfileProxy(Context context, BluetoothProfile.ServiceListener listener, int profile) argument
1941 closeProfileProxy(int profile, BluetoothProfile proxy) argument
[all...]
H A DIBluetooth.aidl57 int getProfileConnectionState(int profile);
88 void sendConnectionStateChange(in BluetoothDevice device, int profile, int state, int prevState);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
H A DCarBatteryController.java262 public void onServiceConnected(int profile, BluetoothProfile proxy) {
263 if (profile == BluetoothProfile.HEADSET_CLIENT) {
269 public void onServiceDisconnected(int profile) {
270 if (profile == BluetoothProfile.HEADSET_CLIENT) {
/frameworks/base/telephony/java/com/android/ims/
H A DImsCallProfile.java27 * Parcelable object to handle IMS call profile.
294 public void updateCallType(ImsCallProfile profile) { argument
295 mCallType = profile.mCallType;
298 public void updateCallExtras(ImsCallProfile profile) { argument
300 mCallExtras = (Bundle) profile.mCallExtras.clone();
347 * @param callProfile The call profile.
461 * @return {@code true} if the profile is for a video call, {@code false} otherwise.
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaRecorderStressTest.java169 private void recordVideoAndPlayback(int profile) throws Exception { argument
181 if (profile != USE_TEST_RUNNER_PROFILE) {
182 assertTrue(String.format("Camera doesn't support profile %d", profile),
183 CamcorderProfile.hasProfile(CAMERA_ID, profile));
184 CamcorderProfile camcorderProfile = CamcorderProfile.get(CAMERA_ID, profile);
329 // Set camcorder profile for time lapse
330 CamcorderProfile profile =
332 mRecorder.setProfile(profile);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvop.cpp92 uint32 profile = 0x01; local
108 tmpvar = (uint32) BitstreamReadBits16(stream, 8); /* profile */
134 profile = tmpvar;
137 // save the profile and level for the query
296 if (profile != 0x10 && profile != 0x11 && profile != 0x12)
303 if (profile != 0x01 && profile != 0x02 && profile !
[all...]
/frameworks/native/opengl/tools/glgen2/registry/
H A Dreg.py42 # matchAPIProfile - returns whether an API and profile
43 # being generated matches an element's profile
45 # profile - string naming the profile to match
46 # elem - Element which (may) have 'api' and 'profile'
49 # or profile always matches.
50 # Otherwise, the tag must exactly match the API or profile.
51 # Thus, if 'profile' = core:
53 # <remove profile='core'> will match
54 # <remove profile
[all...]
/frameworks/av/media/libstagefright/
H A DUtils.cpp192 OMX_AUDIO_AACPROFILETYPE profile; local
193 if (profiles.map(audioObjectType, &profile)) {
194 format->setInt32("profile", profile);
202 const uint8_t profile = ptr[1]; local
236 // set profile & level if they are recognized
239 if (profiles.map(profile, &codecProfile)) {
240 format->setInt32("profile", codecProfile);
242 // for 9 && 11 decide level based on profile and constraint_set3 flag
243 if (level == 11 && (profile
256 const uint8_t profile = ptr[6]; local
298 const uint8_t profile = ptr[1] & 0x1F; local
398 OMX_VIDEO_MPEG2PROFILETYPE profile; local
426 OMX_VIDEO_MPEG2PROFILETYPE profile; local
551 OMX_VIDEO_VP9PROFILETYPE profile; local
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTPAssembler.cpp73 unsigned profile,
102 dst[2] = (profile << 6)
72 MakeADTSCompoundFromAACFrames( unsigned profile, unsigned samplingFreqIndex, unsigned channelConfig, const List<sp<ABuffer> > &frames) argument
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioPort.h76 void addAudioProfile(const sp<AudioProfile> &profile) { mProfiles.add(profile); } argument
H A DAudioInputDescriptor.h37 AudioInputDescriptor(const sp<IOProfile>& profile);
48 const sp<IOProfile> mProfile; // I/O profile this output derives from
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DA2dpProfile.java52 // Order of this profile in device profiles list
59 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
78 public void onServiceDisconnected(int profile) { argument
H A DHidProfile.java32 * HidProfile handles Bluetooth HID profile.
47 // Order of this profile in device profiles list
54 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
73 public void onServiceDisconnected(int profile) { argument
H A DLocalBluetoothAdapter.java94 BluetoothProfile.ServiceListener listener, int profile) {
95 mAdapter.getProfileProxy(context, listener, profile);
93 getProfileProxy(Context context, BluetoothProfile.ServiceListener listener, int profile) argument
H A DPanProfile.java33 * PanProfile handles Bluetooth PAN profile (NAP and PANU).
48 // Order of this profile in device profiles list
55 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
61 public void onServiceDisconnected(int profile) { argument
H A DPbapClientProfile.java52 // Order of this profile in device profiles list
59 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
80 public void onServiceDisconnected(int profile) { argument
/frameworks/base/telephony/java/com/android/ims/internal/
H A DIImsService.aidl56 IImsCallSession createCallSession(int serviceId, in ImsCallProfile profile,
/frameworks/wilhelm/src/android/util/
H A DAacAdtsExtractor.cpp106 uint8_t profile, sf_index, channel, header[2]; local
113 profile = (header[0] >> 6) & 0x3;
126 mMeta = MakeAACCodecSpecificData(profile, sf_index, channel);
/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp437 // FIXME: would be better to refine to only inputs whose profile connects to the
637 // Find a direct output profile compatible with the parameters passed, even if the input flags do
646 // only retain flags that will drive the direct output profile selection
653 sp<IOProfile> profile; local
673 if (profile != 0 && ((curProfile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) == 0)) {
676 profile = curProfile;
677 if ((profile->getFlags() & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) != 0) {
682 return profile;
862 sp<IOProfile> profile; local
881 profile
1513 sp<IOProfile> profile; local
2369 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */, local
3705 sp<IOProfile> profile = mHwModules[i]->mOutputProfiles[j]; local
3726 sp<IOProfile> profile = profiles[profile_index]; local
3903 sp<IOProfile> profile = mHwModules[i]->mOutputProfiles[j]; local
3949 sp<IOProfile> profile = mHwModules[module_idx]->mInputProfiles[profile_index]; local
3971 sp<IOProfile> profile = profiles[profile_index]; local
4061 sp<IOProfile> profile = mHwModules[module_index]->mInputProfiles[profile_index]; local
4911 sp<IOProfile> profile = mHwModules[i]->mInputProfiles[j]; local
[all...]

Completed in 1867 milliseconds

123456