/packages/apps/Settings/src/com/android/settings/vpn/ |
VpnEditor.java | 42 * The activity class for editing a new or existing VPN profile. 47 private static final String KEY_PROFILE = "profile"; 120 private void initViewFor(VpnProfile profile) { 121 setTitle(profile); 125 private void setTitle(VpnProfile profile) { 130 profile.getType().getDisplayName())); 134 * Checks the validity of the inputs and set the profile as result if valid.
|
/external/webkit/WebCore/page/ |
Console.cpp | 317 void Console::profile(const String& title, ScriptCallStack* callStack) function in class:WebCore::Console 331 if (title.isNull()) // no title so give it the next user initiated profile title. 358 RefPtr<ScriptProfile> profile = ScriptProfiler::stop(callStack->state(), title); 359 if (!profile) 362 m_profiles.append(profile); 366 controller->addProfile(profile, lastCaller.lineNumber(), lastCaller.sourceURL());
|
/external/opencore/codecs_v2/video/m4v_h263/dec/src/ |
vop.cpp | 93 uint32 profile = 0x01; local 109 tmpvar = (uint32) BitstreamReadBits16(stream, 8); /* profile */ 123 tmpvar != 0x21 && tmpvar != 0x22 && /* Core Profile Levels */ 125 tmpvar != 0xF0 && tmpvar != 0xF1 && /* Advanced Simple Profile Levels*/ 131 profile = tmpvar; 134 // save the profile and level for the query 293 if (profile != 0x10 && profile != 0x11 && profile != 0x12) 300 if (profile != 0x01 && profile != 0x02 && profile != 0x03 && profile != 0x08 & [all...] |
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
vop.cpp | 92 uint32 profile = 0x01; local 108 tmpvar = (uint32) BitstreamReadBits16(stream, 8); /* profile */ 122 tmpvar != 0x21 && tmpvar != 0x22 && /* Core Profile Levels */ 124 tmpvar != 0xF0 && tmpvar != 0xF1 && /* Advanced Simple Profile Levels*/ 130 profile = tmpvar; 133 // save the profile and level for the query 292 if (profile != 0x10 && profile != 0x11 && profile != 0x12) 299 if (profile != 0x01 && profile != 0x02 && profile != 0x03 && profile != 0x08 & [all...] |
/external/e2fsprogs/e2fsck/ |
e2fsck.c | 170 if (ctx->profile) 171 profile_release(ctx->profile);
|
/external/opencore/codecs_v2/audio/aac/dec/src/ |
get_prog_config.cpp | 144 RETURNING( pScratchPCE->profile = returnValue ) 363 objectType = pVars->prog_config.profile + 1, 487 pScratchPCE->profile = 728 (tMP4AudioObjectType)(pVars->prog_config.profile + 1),
|
/external/opencore/codecs_v2/audio/aac/dec/util/getactualaacconfig/src/ |
get_prog_config.cpp | 144 RETURNING( pScratchPCE->profile = returnValue ) 363 objectType = pVars->prog_config.profile + 1, 487 pScratchPCE->profile = 728 (tMP4AudioObjectType)(pVars->prog_config.profile + 1),
|
/external/opencore/fileformats/mp4/composer/include/ |
a_impeg4file.h | 302 uint8 profile = 1, 328 uint8 profile,
|
/external/opencore/fileformats/mp4/composer/src/ |
mediaatom.cpp | 34 uint8 profile, 47 protocol, profile,
|
mediainformationatom.cpp | 41 uint8 profile, 51 protocol, profile,
|
/frameworks/base/media/libstagefright/codecs/aacdec/ |
get_prog_config.cpp | 144 RETURNING( pScratchPCE->profile = returnValue ) 363 objectType = pVars->prog_config.profile + 1, 487 pScratchPCE->profile = 728 (tMP4AudioObjectType)(pVars->prog_config.profile + 1),
|
/external/quake/quake/src/WinQuake/ |
pr_comp.h | 145 int profile; // runtime
member in struct:__anon5447
|
pr_exec.cpp | 237 if (f->profile > max) 239 max = f->profile; 246 Con_Printf ("%7i %s\n", best->profile, pr_strings+best->s_name); 248 best->profile = 0; 402 pr_xfunction->profile++;
|
/external/bluetooth/bluez/audio/ |
manager.c | 236 sdp_profile_desc_t profile; local 255 sdp_uuid16_create(&profile.uuid, HEADSET_PROFILE_ID); 256 profile.version = 0x0102; 257 pfseq = sdp_list_append(0, &profile); 292 sdp_profile_desc_t profile; local 311 sdp_uuid16_create(&profile.uuid, HANDSFREE_PROFILE_ID); 312 profile.version = 0x0100; 313 pfseq = sdp_list_append(0, &profile); 348 sdp_profile_desc_t profile; local 370 sdp_uuid16_create(&profile.uuid, HANDSFREE_PROFILE_ID) [all...] |
/external/icu4c/test/cintltst/ |
sprpdata.c | 278 UStringPrepProfile* profile = NULL; local 289 profile = usprep_open(testdatapath, binFileName, errorCode); 303 parseMappings(filename,profile, TRUE,errorCode);
|
spreptst.c | 108 const char *profile; member in struct:ConformanceTestCases 599 UStringPrepProfile* profile = NULL; local 608 /* open the profile */ 609 profile = usprep_open(testdatapath, "nfscis", &status); 610 usprep_prepare(profile,&src , 0, NULL, 0, USPREP_DEFAULT, &parseError, &status); 612 usprep_close(profile); 637 /**** Profile Test ****/ 642 * Profile name 771 log_data_err("Unable to open String Prep Profile with: %s\n", profileName); 788 log_err("Error occurred on test[%d] for profile: %s\n", testNum, profileName) [all...] |
/external/webkit/SunSpider/ |
sunspider | 99 for my $profile (split(/\n/, $sharkProfileList)) { 100 $profile =~ /(\d+) - (.+)/; 106 print "Using Shark L2 Cache Miss Profile: " . $profile . "\n"; 110 die "Failed to find L2 Cache Miss Profile for --shark-cache\n" unless ($sharkCacheProfileIndex); 235 my $profileFile = "$resultDirectory/sunspider-profile-$timeString.mshark";
|
/external/webkit/WebKit/chromium/src/js/ |
InspectorControllerImpl.js | 218 devtools.InspectorBackendImpl.prototype.addFullProfile = function(profile) 221 WebInspector.__fullProfiles[profile.uid] = profile;
|
ProfilerProcessor.js | 33 * by V8 and produce an internal profile representation which is used 34 * for building profile views in "Profiles" tab. 39 * Creates a Profile View builder object compatible with WebKit Profiler UI. 61 * Constructs a Profile View node object for displaying in WebKit Profiler UI. 66 * profile they can be either callees or callers.) 69 * @param {devtools.profiler.ProfileView.Node} head Profile view head. 122 * Ancestor of a profile object that leaves out only JS-related functions. 127 devtools.profiler.Profile.call(this); 129 devtools.profiler.JsProfile.prototype.__proto__ = devtools.profiler.Profile.prototype; 153 * Profiler processor. Consumes profiler log and builds profile views [all...] |
/external/e2fsprogs/misc/ |
Makefile.in | 35 MKE2FS_OBJS= mke2fs.o util.o profile.o prof_err.o default_profile.o 54 $(srcdir)/ismounted.c $(srcdir)/../e2fsck/profile.c 81 default_profile.c: $(srcdir)/mke2fs.conf $(srcdir)/profile-to-c.awk 83 $(AWK) -f $(srcdir)/profile-to-c.awk < $(srcdir)/mke2fs.conf \ 85 profile.o: 87 @$(CC) -c $(ALL_CFLAGS) $(srcdir)/../e2fsck/profile.c -o $@ 407 $(srcdir)/../e2fsck/profile.h prof_err.h $(top_srcdir)/version.h \ 452 profile.o: $(srcdir)/../e2fsck/profile.c $(top_srcdir)/lib/et/com_err.h \ 453 $(srcdir)/../e2fsck/profile.h prof_err. [all...] |
mke2fs.c | 54 #include "profile.h" 90 profile_t profile; variable 1005 retval = profile_init(config_fn, &profile); 1007 profile_init(default_files, &profile); 1008 profile_set_default(profile, mke2fs_default_profile); [all...] |
/external/bluetooth/bluez/network/ |
server.c | 141 sdp_profile_desc_t profile[1]; local 164 sdp_uuid16_create(&profile[0].uuid, NAP_PROFILE_ID); 165 profile[0].version = 0x0100; 166 pfseq = sdp_list_append(NULL, &profile[0]); 181 sdp_uuid16_create(&profile[0].uuid, GN_PROFILE_ID); 182 profile[0].version = 0x0100; 183 pfseq = sdp_list_append(NULL, &profile[0]); 193 sdp_uuid16_create(&profile[0].uuid, PANU_PROFILE_ID); 194 profile[0].version = 0x0100; 195 pfseq = sdp_list_append(NULL, &profile[0]) [all...] |
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
LocalBluetoothProfileManager.java | 37 * functionality related to a profile. 57 private static Map<Profile, LocalBluetoothProfileManager> sProfileMap = 58 new HashMap<Profile, LocalBluetoothProfileManager>(); 68 sProfileMap.put(Profile.A2DP, profileManager); 71 sProfileMap.put(Profile.HEADSET, profileManager); 74 sProfileMap.put(Profile.OPP, profileManager); 80 Profile profile) { 85 LocalBluetoothProfileManager profileManager = sProfileMap.get(profile); 87 Log.e(TAG, "profileManager can't be found for " + profile.toString()) [all...] |
/external/opencore/codecs_v2/utilities/m4v_config_parser/include/ |
m4v_config_parser.h | 89 OSCL_IMPORT_REF int16 iGetAVCConfigInfo(uint8 *buffer, int32 length, int32 *width, int32 *height, int32 *, int32 *, int32 *profile, int32 *level);
|
/hardware/ti/omap3/omx/ti_omx_config_parser/inc/ |
ti_m4v_config_parser.h | 123 int32 *profile,
|