Home
last modified time | relevance | path

Searched refs:profiles (Results 1 – 25 of 44) sorted by relevance

12

/frameworks/av/media/libmedia/
DMediaProfiles.cpp179 MediaProfiles::createVideoCodec(const char **atts, MediaProfiles *profiles) in createVideoCodec() argument
197 CHECK((nCamcorderProfiles = profiles->mCamcorderProfiles.size()) >= 1); in createVideoCodec()
198 profiles->mCamcorderProfiles[nCamcorderProfiles - 1]->mVideoCodec = videoCodec; in createVideoCodec()
203 MediaProfiles::createAudioCodec(const char **atts, MediaProfiles *profiles) in createAudioCodec() argument
219 CHECK((nCamcorderProfiles = profiles->mCamcorderProfiles.size()) >= 1); in createAudioCodec()
220 profiles->mCamcorderProfiles[nCamcorderProfiles - 1]->mAudioCodec = audioCodec; in createAudioCodec()
419 MediaProfiles::createVideoEditorCap(const char **atts, MediaProfiles *profiles) in createVideoEditorCap() argument
432 profiles->mVideoEditorCap = pVideoEditorCap; in createVideoEditorCap()
440 MediaProfiles *profiles = (MediaProfiles *) userData; in startElementHandler() local
442 createVideoCodec(atts, profiles); in startElementHandler()
[all …]
/frameworks/av/include/media/
DMediaProfiles.h412 static VideoCodec* createVideoCodec(const char **atts, MediaProfiles *profiles);
413 static AudioCodec* createAudioCodec(const char **atts, MediaProfiles *profiles);
419 const char **atts, MediaProfiles *profiles);
456 static void createDefaultCamcorderProfiles(MediaProfiles *profiles);
457 static void createDefaultVideoEncoders(MediaProfiles *profiles);
458 static void createDefaultAudioEncoders(MediaProfiles *profiles);
459 static void createDefaultVideoDecoders(MediaProfiles *profiles);
460 static void createDefaultAudioDecoders(MediaProfiles *profiles);
461 static void createDefaultEncoderOutputFileFormats(MediaProfiles *profiles);
462 static void createDefaultImageEncodingQualityLevels(MediaProfiles *profiles);
[all …]
/frameworks/base/docs/html/training/enterprise/
Dapp-compatibility.jd26 profiles</a>. A managed profile is controlled by an administrator, and the
30 letting users use their personal apps and profiles.</p>
33 reliably on a device with managed profiles. You don't need to do anything
35 practices become especially important on devices with managed profiles. This
46 set up <i>managed profiles</i>. If a device has a managed profile, the profile's
64 <li>Since the managed and unmanaged profiles have separate storage areas, a
173 managed profiles. In particular, testing on a managed-profile device is a good
209 intent is not allowed to cross between profiles, verify the app's behavior both
220 <li>The device does not allow map intents to cross between profiles, but there
223 <li>The device does not allow map intents to cross between profiles, and there
[all …]
Dindex.jd56 profiles</a></dd>
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DBluetoothControllerImpl.java139 private static String profilesToString(SparseArray<?> profiles) { in profilesToString() argument
140 final int N = profiles.size(); in profilesToString()
147 buffer.append(BluetoothUtil.profileToString(profiles.keyAt(i))); in profilesToString()
242 SparseArray<Boolean> profiles = new SparseArray<>(); in connect() local
254 profiles.put(profile, true); in connect()
259 profiles = info.connectedProfiles; in connect()
261 for (int i = 0; i < profiles.size(); i++) { in connect()
262 final int profile = profiles.keyAt(i); in connect()
/frameworks/compile/mclinker/include/mcld/LD/
DDiagAttribute.inc7 …nosticEngine::Warning, "conflicting architecture profiles %0 in %1.", "conflicting architecture pr…
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java1226 List<UserInfo> profiles = mUserManager.getProfiles(userHandle); in sendAdminCommandToSelfAndProfilesLocked() local
1227 for (UserInfo ui : profiles) { in sendAdminCommandToSelfAndProfilesLocked()
1649 List<UserInfo> profiles = mUserManager.getProfiles(userHandle); in handlePasswordExpirationNotification() local
1650 for (UserInfo ui : profiles) { in handlePasswordExpirationNotification()
1950 List<UserInfo> profiles = mUserManager.getProfiles(userHandle); in getPasswordQuality() local
1951 for (UserInfo userInfo : profiles) { in getPasswordQuality()
1997 List<UserInfo> profiles = mUserManager.getProfiles(userHandle); in getPasswordMinimumLength() local
1998 for (UserInfo userInfo : profiles) { in getPasswordMinimumLength()
2044 List<UserInfo> profiles = mUserManager.getProfiles(userHandle); in getPasswordHistoryLength() local
2045 for (UserInfo userInfo : profiles) { in getPasswordHistoryLength()
[all …]
/frameworks/base/services/core/java/com/android/server/
DLockSettingsService.java272 final List<UserInfo> profiles = um.getProfiles(userHandle); in maybeUpdateKeystore() local
277 if (userHandle == UserHandle.USER_OWNER && profiles.size() == 1) { in maybeUpdateKeystore()
283 for (UserInfo pi : profiles) { in maybeUpdateKeystore()
DTextServicesManagerService.java150 List<UserInfo> profiles = in updateCurrentProfileIds() local
152 int[] currentProfileIds = new int[profiles.size()]; // profiles will not be null in updateCurrentProfileIds()
154 currentProfileIds[i] = profiles.get(i).id; in updateCurrentProfileIds()
/frameworks/base/core/java/android/os/
DUserManager.java915 ArrayList<UserHandle> profiles = new ArrayList<UserHandle>(); in getUserProfiles() local
925 profiles.add(userHandle); in getUserProfiles()
927 return profiles; in getUserProfiles()
/frameworks/base/docs/html/guide/appendix/
Dmedia-formats.jd32 …-specific. <strong>However, it is a best practice to use media encoding profiles that are device-a…
283 <p>Table 2, below, lists examples of video encoding profiles and parameters that the Android
288 a device's available <em>video recording</em> profiles can be used as a proxy for media playback
289 capabilities. These profiles can be inspected using the {@link android.media.CamcorderProfile
/frameworks/opt/net/voip/src/java/com/android/server/sip/
DSipService.java128 ArrayList<SipProfile> profiles = new ArrayList<SipProfile>(); in getListOfProfiles() local
131 profiles.add(group.getLocalProfile()); in getListOfProfiles()
134 return profiles.toArray(new SipProfile[profiles.size()]); in getListOfProfiles()
/frameworks/base/docs/html/guide/topics/manifest/
Dapplication-element.jd345 <p>Because restricted profiles currently
353 …AccountType">{@code android:restrictedAccountType}</a> null, so that restricted profiles cannot use
361 <dd>Specifies the account type required by this application and indicates that restricted profiles
363 {@link android.accounts.Account} and restricted profiles <strong>are allowed to
372 Specifying this attribute allows restricted profiles to use your
377 to make your app unavailable to restricted profiles.</p>
/frameworks/base/services/core/java/com/android/server/notification/
DManagedServices.java617 List<UserInfo> profiles = userManager.getProfiles(currentUserId); in updateCache() local
620 for (UserInfo user : profiles) { in updateCache()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiServiceImpl.java1012 List<UserInfo> profiles = UserManager.get(mContext).getProfiles(currentUser); in isCurrentProfile() local
1013 for (UserInfo user : profiles) { in isCurrentProfile()
1034 List<UserInfo> profiles = UserManager.get(mContext).getProfiles(ownerUser); in isOwner() local
1035 for (UserInfo profile : profiles) { in isOwner()
/frameworks/base/docs/html/guide/topics/connectivity/
Dbluetooth-le.jd72 as "attributes" over a BLE link. All current Low Energy application profiles are
76 <a href="https://www.bluetooth.org/en-us/specification/adopted-specifications">profiles</a>
103 profiles and services on
459 // For all other profiles, writes the data formatted in HEX.
Dbluetooth.jd120 all Bluetooth profiles and services supported by the device, but is useful as a
126 example is the Hands-Free profile. For more discussion of profiles, see <a
131 Headset and Hands-Free (v1.5) profiles.</dd>
896 Bluetooth profiles. A <em>Bluetooth profile</em> is a wireless interface
904 profiles:</p>
912 >). This includes both Bluetooth Headset and Hands-Free (v1.5) profiles. The
Dsip.jd13 <li><a href="#profiles">Registering with a SIP Server</a></li>
211 <h2 id="profiles">Registering with a SIP Server</h2>
/frameworks/base/docs/html/about/versions/
Dandroid-4.3.jd203 <p>If you'd like to prevent restricted profiles from using your app entirely because your
210 <p>If you’d like to allow restricted profiles to continue using your app even though they can’t
212 or allow restricted profiles to access the accounts created by the primary user. For more
236 <p>On Android tablets, users can now create restricted profiles based on the primary user.
308 app access to the primary user's accounts from restricted profiles. So you should allow this
311 user that your app grants restricted profiles to their accounts, so it should be clear to the user
339 <p>If it’s instead important that your app not be available to restricted profiles because
340 your app depends on sensitive personal information in an account (and because restricted profiles
349 <p>For example, the Gmail app uses this attribute to disable itself for restricted profiles,
350 because the owner's personal email should not be available to restricted profiles.</p>
Dandroid-2.0-highlights.jd188 <li>New BT profiles: Object Push Profile (OPP) and Phone Book Access Profile (PBAP)</li>
Dandroid-1.5-highlights.jd84 <li>Stereo Bluetooth support (A2DP and AVCRP profiles)</li>
Djelly-bean.jd193 <h2 id="43-profiles">Support for Restricted Profiles</h2>
196 <img src="{@docRoot}images/jb-profiles-create-n713.png" alt="Setting up a Restricted Profile" width…
197 …25em;margin-bottom:0;">A tablet owner can set up one or more restricted profiles in Settings and m…
198 <img src="{@docRoot}images/jb-profiles-restrictions-n713.png" alt="Setting Restrictions in a Profil…
203 profiles</strong>, a new way to manage users and their capabilities on a single
204 device. With restricted profiles, tablet owners can quickly set up
207 available in those environments. Restricted profiles are ideal for friends and
212 users, profiles are created from the tablet owner’s environment, based on the
222 <p>For developers, restricted profiles offer a new way to deliver more value and
239 <p>If your app is not designed for use in restricted profiles, you can opt
[all …]
Dlollipop.jd181 …in control over <strong>text-to-speech synthesis</strong> through voice profiles that are associat…
222 app is used by both profiles.</p>
/frameworks/av/services/audiopolicy/
DAudioPolicyManager.cpp3520 SortedVector< sp<IOProfile> > profiles; in checkOutputsForDevice() local
3532 profiles.add(profile); in checkOutputsForDevice()
3539 ALOGV(" found %d profiles, %d outputs", profiles.size(), outputs.size()); in checkOutputsForDevice()
3541 if (profiles.isEmpty() && outputs.isEmpty()) { in checkOutputsForDevice()
3548 for (ssize_t profile_index = 0; profile_index < (ssize_t)profiles.size(); profile_index++) { in checkOutputsForDevice()
3549 sp<IOProfile> profile = profiles[profile_index]; in checkOutputsForDevice()
3715 profiles.removeAt(profile_index); in checkOutputsForDevice()
3731 if (profiles.isEmpty()) { in checkOutputsForDevice()
3800 SortedVector< sp<IOProfile> > profiles; in checkInputsForDevice() local
3815 profiles.add(profile); in checkInputsForDevice()
[all …]
/frameworks/base/core/java/com/android/internal/app/
DResolverActivity.java538 List<UserInfo> profiles = userManager.getProfiles(getUserId()); in hasManagedProfile() local
539 for (UserInfo userInfo : profiles) { in hasManagedProfile()

12