Searched refs:profile (Results 101 - 125 of 135) sorted by relevance

123456

/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCallTracker.java495 ImsCallProfile profile = mImsManager.createCallProfile(mServiceId,
497 profile.setCallExtraInt(ImsCallProfile.EXTRA_OIR, clirMode);
510 profile.mCallExtras.putBundle(ImsCallProfile.EXTRA_OEM_EXTRAS, intentExtras);
518 ImsCall imsCall = mImsManager.makeCall(mServiceId, profile,
986 ImsCallProfile profile = mImsManager.createCallProfile(mServiceId,
988 profile.setCallExtraInt(ImsCallProfile.EXTRA_DIALSTRING,
991 mUssdSession = mImsManager.makeCall(mServiceId, profile,
H A DImsPhoneCommandInterface.java258 public void setupDataCall(int radioTechnology, int profile, argument
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp512 status_t StagefrightRecorder::setParamVideoEncoderProfile(int32_t profile) { argument
513 ALOGV("setParamVideoEncoderProfile: %d", profile);
517 mVideoEncoderProfile = profile;
695 } else if (key == "video-param-encoder-profile") {
696 int32_t profile; local
697 if (safe_strtoi32(value.string(), &profile)) {
698 return setParamVideoEncoderProfile(profile);
959 format->setInt32("aac-profile", OMX_AUDIO_AACObjectLC);
963 format->setInt32("aac-profile", OMX_AUDIO_AACObjectHE);
967 format->setInt32("aac-profile", OMX_AUDIO_AACObjectEL
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DLockSettingsService.java216 * Tie managed profile to primary profile if it is in unified mode and not tied before.
218 * @param managedUserId Managed profile user Id
219 * @param managedUserPassword Managed profile original password (when it has separated lock).
223 if (DEBUG) Slog.v(TAG, "Check child profile lock for user: " + managedUserId);
224 // Only for managed profile
228 // Do not tie managed profile when work challenge is enabled
232 // Do not tie managed profile to parent when it's done already
242 if (DEBUG) Slog.v(TAG, "Tie managed profile to parent now!");
255 Slog.e(TAG, "Fail to tie managed profile",
[all...]
/frameworks/av/include/media/stagefright/
H A DACodec.h105 OMX_VIDEO_AVCPROFILETYPE profile = OMX_VIDEO_AVCProfileBaseline);
491 status_t verifySupportForProfileAndLevel(int32_t profile, int32_t level);
/frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/
H A DScoAudioTest.java658 public void onServiceConnected(int profile, BluetoothProfile proxy) {
668 public void onServiceDisconnected(int profile) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DTelephonyEventLog.java118 public static final String DATA_KEY_DATA_PROFILE = "profile";
340 int radioTechnology, int profile, String apn,
344 b.putInt(DATA_KEY_DATA_PROFILE, profile);
339 writeRilSetupDataCall(int rilSerial, int radioTechnology, int profile, String apn, String user, String password, int authType, String protocol) argument
/frameworks/av/media/libstagefright/codecs/avc/enc/test/
H A Dh264_enc_test.cpp218 encParams.profile = AVC_BASELINE;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DCameraStreamer.java1445 * @param profile the recording {@link CamcorderProfile} which has parameters indicating
1448 public void createRecorder(String outputPath, CamcorderProfile profile) { argument
1458 mRecorder.setProfile(profile);
1849 * @param profile the recording {@link CamcorderProfile} which has parameters indicating
1852 public void createRecorder(String path, CamcorderProfile profile) { argument
1853 mCameraRunner.createRecorder(path, profile);
/frameworks/av/media/libstagefright/mpeg2ts/
H A DESQueue.cpp197 // MPEG-2 profile 3 is reserved.
675 unsigned profile = bits.getBits(2); local
676 if (profile == 3u) {
677 ALOGE("profile should not be 3");
690 profile, sampling_freq_index, channel_configuration);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DDecTestBench.c239 DEBUG(("Profile %d\n", decInfo.profile));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java259 public void setupDataCall(int radioTechnology, int profile, argument
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp135 uint8_t profile = ptr[1]; local
137 fprintf(stderr, "AVC video profile %d and level %d\n", profile, level);
H A Dsf2.cpp330 uint8_t profile __unused = ptr[1];
/frameworks/av/media/libstagefright/
H A DMPEG2TSWriter.cpp306 unsigned profile = (codec_specific_data[0] >> 3) - 1; local
323 profile << 6
/frameworks/av/media/libstagefright/wifi-display/source/
H A DTSPacketizer.cpp207 unsigned profile = (codec_specific_data[0] >> 3) - 1; local
222 profile << 6
273 CHECK(mFormat->findInt32("profile-idc", &profileIdc));
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java170 + "the profile is not opened");
189 SipProfile profile = group.getLocalProfile();
190 return (profile.getCallingUid() == Binder.getCallingUid());
209 if (DBG) log("only creator or radio can close this profile");
230 if (DBG) log("only creator or radio can query on the profile");
245 if (DBG) log("only creator or radio can query on the profile");
261 if (DBG) log("only creator can set listener on the profile");
268 if (DBG) log("createSession: profile" + localProfile);
316 throw new SipException("only creator can access the profile");
328 throw new SipException("only creator can access the profile");
[all...]
H A DSipSessionGroup.java127 * @param profile the local profile with password crossed out
128 * @param password the password of the profile
131 public SipSessionGroup(SipProfile profile, String password, argument
133 mLocalProfile = profile;
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java3114 public void onServiceConnected(int profile, BluetoothProfile proxy) {
3117 switch(profile) {
3216 public void onServiceDisconnected(int profile) {
3218 switch (profile) {
3802 public int setBluetoothA2dpDeviceConnectionState(BluetoothDevice device, int state, int profile) argument
3805 if (profile != BluetoothProfile.A2DP && profile != BluetoothProfile.A2DP_SINK) {
3806 throw new IllegalArgumentException("invalid profile " + profile);
3809 if (profile
[all...]
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.cpp1974 unsigned profile = bits.getBits(2); local
1975 CHECK_NE(profile, 3u);
1983 profile, sampling_freq_index, channel_configuration);
/frameworks/av/media/libstagefright/codecs/avc/enc/
H A DSoftAVCEncoder.cpp295 // Set profile and level
296 mEncParams->profile = mAVCEncProfile;
464 // PV's AVC encoder only supports baseline profile
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java.broken599 public void setupDataCall(String radioTechnology, String profile, String apn, String user,
/frameworks/base/core/java/android/view/
H A DViewDebug.java457 profile(view, clientStream, params[0]);
501 private static void profile(View root, OutputStream clientStream, String parameter) method in class:ViewDebug
/frameworks/base/media/java/android/media/
H A DAudioManager.java3260 * @param profile profile for the A2DP device
3268 int profile) {
3272 delay = service.setBluetoothA2dpDeviceConnectionState(device, state, profile);
3267 setBluetoothA2dpDeviceConnectionState(BluetoothDevice device, int state, int profile) argument
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DTethering.java464 public void onServiceDisconnected(int profile) { }
467 public void onServiceConnected(int profile, BluetoothProfile proxy) {

Completed in 583 milliseconds

123456