HomeSort by relevance Sort by last modified time
    Searched refs:profile (Results 126 - 150 of 1672) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/core/java/android/bluetooth/
BluetoothManager.java 83 * Get the current connection state of the profile to the remote device.
86 * the connection state of the local Bluetooth adapter for certain profile.
91 * @param profile GATT or GATT_SERVER
92 * @return State of the profile connection. One of
98 public int getConnectionState(BluetoothDevice device, int profile) {
101 List<BluetoothDevice> connectedDevices = getConnectedDevices(profile);
112 * Get connected devices for the specified profile.
117 * the connection state of Bluetooth for this profile.
121 * @param profile GATT or GATT_SERVER
125 public List<BluetoothDevice> getConnectedDevices(int profile) {
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
ShaderLang.cpp 132 int MapProfileToIndex(EProfile profile)
136 switch (profile) {
156 // A process-global symbol table per version per profile for built-ins common
158 // per profile per stage for built-ins unique to each stage. They will be sparsely
172 bool InitializeSymbolTable(const TString& builtIns, int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage language, TInfoSink& infoSink,
175 TIntermediate intermediate(language, version, profile);
177 TParseContext parseContext(symbolTable, intermediate, true, version, profile, spvVersion, language, infoSink);
212 int CommonIndex(EProfile profile, EShLanguage language)
214 return (profile == EEsProfile && language == EShLangFragment) ? EPcFragment : EPcGeneral;
220 void InitializeStageSymbolTable(TBuiltInParseables& builtInParseables, int version, EProfile profile, const SpvVersion& spvVersion
608 EProfile profile; local
    [all...]
Scan.cpp 167 // is that scanning will start anew, following the rules for the chosen version/profile,
170 bool TInputScanner::scanVersion(int& version, EProfile& profile, bool& notFirstToken)
179 profile = ENoProfile;
250 // profile
266 profile = EEsProfile;
268 profile = ECoreProfile;
270 profile = ECompatibilityProfile;
737 if ((parseContext.profile == EEsProfile && parseContext.version < 300) ||
738 (parseContext.profile != EEsProfile && parseContext.version < 130))
772 if (parseContext.profile == EEsProfile && parseContext.version >= 300
    [all...]
  /external/ImageMagick/coders/
thumbnail.c 55 #include "MagickCore/profile.h"
98 entry=AcquireMagickInfo("THUMBNAIL","THUMBNAIL","EXIF Profile Thumbnail");
164 *profile;
187 profile=GetImageProfile(image,"exif");
188 if (profile == (const StringInfo *) NULL)
203 magick[2]=GetStringInfoDatum(profile)[offset+i];
207 thumbnail_image=BlobToImage(image_info,GetStringInfoDatum(profile)+offset+i-2,
159 *profile; local
meta.c 55 #include "MagickCore/profile.h"
1154 *profile;
1216 profile=BlobToStringInfo(GetBlobStreamData(buff),(size_t)
1218 if (profile == (StringInfo *) NULL
1150 *profile; local
2207 *profile; local
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/
VideoFormats.h 42 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,
VideoFormats.cpp 166 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, LevelType *level) const
307 unsigned profile, level, res[3]; local
    [all...]
  /frameworks/base/telephony/java/com/android/ims/
ImsStreamMediaProfile.java 23 * Parcelable object to handle IMS stream media profile.
103 public void copyFrom(ImsStreamMediaProfile profile) {
104 mAudioQuality = profile.mAudioQuality;
105 mAudioDirection = profile.mAudioDirection;
106 mVideoQuality = profile.mVideoQuality;
107 mVideoDirection = profile.mVideoDirection;
  /prebuilts/go/darwin-x86/src/runtime/pprof/internal/protopprof/
protopprof_test.go 10 "internal/pprof/profile"
19 // Helper function to initialize empty cpu profile with sampling period provided.
24 // Profile header is as follows:
40 // Helper function to initialize cpu profile with two sample values.
65 // Tests TranslateCPUProfile parses correct sampling period in an otherwise empty cpu profile.
67 // A test server with mock cpu profile data.
80 p, err = profile.Parse(&buf)
82 t.Fatalf("Could not parse Profile profile: %v", err)
86 expectedPeriodType := &profile.ValueType{Type: "cpu", Unit: "nanoseconds"
    [all...]
protomemprofile_test.go 9 "internal/pprof/profile"
17 // TestSampledHeapAllocProfile tests encoding of a memory profile from
30 mprof := &profile.Profile{}
47 t.Fatalf("Failed to write profile: %v", err)
50 p, err = profile.Parse(&buf)
52 t.Fatalf("Could not parse Profile profile: %v", err)
56 expectedPeriodType := &profile.ValueType{Type: "space", Unit: "bytes"}
57 expectedSampleType := []*profile.ValueType
    [all...]
  /prebuilts/go/linux-x86/src/runtime/pprof/internal/protopprof/
protopprof_test.go 10 "internal/pprof/profile"
19 // Helper function to initialize empty cpu profile with sampling period provided.
24 // Profile header is as follows:
40 // Helper function to initialize cpu profile with two sample values.
65 // Tests TranslateCPUProfile parses correct sampling period in an otherwise empty cpu profile.
67 // A test server with mock cpu profile data.
80 p, err = profile.Parse(&buf)
82 t.Fatalf("Could not parse Profile profile: %v", err)
86 expectedPeriodType := &profile.ValueType{Type: "cpu", Unit: "nanoseconds"
    [all...]
protomemprofile_test.go 9 "internal/pprof/profile"
17 // TestSampledHeapAllocProfile tests encoding of a memory profile from
30 mprof := &profile.Profile{}
47 t.Fatalf("Failed to write profile: %v", err)
50 p, err = profile.Parse(&buf)
52 t.Fatalf("Could not parse Profile profile: %v", err)
56 expectedPeriodType := &profile.ValueType{Type: "space", Unit: "bytes"}
57 expectedSampleType := []*profile.ValueType
    [all...]
  /external/autotest/client/cros/scripts/
profile 18 print cmd, 'create <name> - Create a profile called |name|.'
19 print cmd, 'push <name> - Push a previously created profile called |name|.'
20 print cmd, 'pop <name> - Pop a profile called |name|.'
21 print cmd, 'pop - Pop the top-most profile.'
22 print cmd, 'remove <name> - Remove a profile called |name| from disk.'
23 print cmd, 'clean - Pop and remove profiles above the default profile.'
25 print cmd, 'list-entries - List profile entries.'
27 'profile called |name| or all profiles if no name is given.'
32 """ Print profile_path and indicate if it is the active profile. """
34 print 'Profile: %s <== active' % profile_pat
    [all...]
  /external/deqp/scripts/opengl/
src_util.py 111 def getInterface (registry, api, version=None, profile=None, **kwargs):
112 spec = khr_util.registry.spec(registry, api, version, profile, **kwargs)
113 if api == 'gl' and profile == 'core' and version < "3.2":
134 profile = check(api, version)
135 if profile is True:
136 profile = None
137 elif profile is False:
139 iface = getInterface(registry, api, version=version, profile=profile)
  /prebuilts/go/darwin-x86/src/cmd/trace/
main.go 18 Generate a pprof-like profile from the trace:
21 Supported profile types are:
22 - net: network blocking profile
23 - sync: synchronization blocking profile
24 - syscall: syscall blocking profile
25 - sched: scheduler latency profile
52 Generate a pprof-like profile from the trace:
58 Supported profile types are:
59 - net: network blocking profile
60 - sync: synchronization blocking profile
    [all...]
  /prebuilts/go/linux-x86/src/cmd/trace/
main.go 18 Generate a pprof-like profile from the trace:
21 Supported profile types are:
22 - net: network blocking profile
23 - sync: synchronization blocking profile
24 - syscall: syscall blocking profile
25 - sched: scheduler latency profile
52 Generate a pprof-like profile from the trace:
58 Supported profile types are:
59 - net: network blocking profile
60 - sync: synchronization blocking profile
    [all...]
  /external/dng_sdk/source/
dng_color_spec.cpp 67 const dng_camera_profile *profile)
100 if (!profile || !profile->IsValid (fChannels))
105 if (profile->WasStubbed ())
107 ThrowProgramError ("Using stubbed profile");
110 fTemperature1 = profile->CalibrationTemperature1 ();
111 fTemperature2 = profile->CalibrationTemperature2 ();
113 fColorMatrix1 = profile->ColorMatrix1 ();
114 fColorMatrix2 = profile->ColorMatrix2 ();
116 fForwardMatrix1 = profile->ForwardMatrix1 ()
    [all...]
  /external/compiler-rt/make/platform/
clang_linux.mk 52 Configs += builtins-i386 profile-i386
54 Arch.profile-i386 := i386
59 Configs += builtins-x86_64 profile-x86_64
61 Arch.profile-x86_64 := x86_64
74 CFLAGS.profile-i386 := $(CFLAGS) -m32
75 CFLAGS.profile-x86_64 := $(CFLAGS) -m64
79 FUNCTIONS.profile-i386 := GCDAProfiling InstrProfiling InstrProfilingBuffer \
84 FUNCTIONS.profile-x86_64 := $(FUNCTIONS.profile-i386)
  /frameworks/base/telephony/java/android/telephony/ims/stub/
ImsCallSessionImplBase.java 60 * Gets the call profile that this session is associated with
70 * Gets the local call profile that this session is associated with
80 * Gets the remote call profile that this session is associated with
141 * Initiates an IMS call with the specified target and call profile.
147 * @param profile call profile to make the call with the specified service type,
153 public void start(String callee, ImsCallProfile profile) throws RemoteException {
157 * Initiates an IMS call with the specified participants and call profile.
163 * @param profile call profile to make the call with the specified service type
    [all...]
  /hardware/intel/common/libva/test/vainfo/
vainfo.c 39 static char * profile_string(VAProfile profile)
41 switch (profile) {
64 return "<unknown profile>";
92 VAProfile profile, *profile_list = NULL; local
119 printf("%s: Supported profile and entrypoints\n", name);
124 printf("Failed to allocate memory for profile list\n");
135 profile = profile_list[i];
136 va_status = vaQueryConfigEntrypoints(va_dpy, profile, entrypoints,
143 profile_str = profile_string(profile);
  /packages/services/Car/service/src/com/android/car/
BluetoothDeviceConnectionPolicy.java 77 * The policy also keeps track of the {Profile : DevicesThatCanConnectOnTheProfile} and when
79 * For every profile, the policy attempts to connect to the last connected device first. The policy
80 * maintains a list of connect-able devices for every profile, in the order of how recently they
81 * connected. The device that successfully connects on a profile is moved to the top of the list
82 * of devices for that profile, so the next time a connection attempt is made, the policy starts
95 // The main data structure that holds on to the {profile:list of known and connectible devices}
132 // Device & Profile currently being connected on
153 // connections each profile supports currently.
155 for (Integer profile: mProfilesToConnect) {
156 switch (profile) {
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 51 static void Profile(llvm::FoldingSetNodeID& profile, const TypedValueRegion* R) {
52 profile.AddInteger((unsigned) SymbolRegionValueKind);
53 profile.AddPointer(R);
56 void Profile(llvm::FoldingSetNodeID& profile) override {
57 Profile(profile, R);
94 static void Profile(llvm::FoldingSetNodeID& profile, const Stmt *S
    [all...]
  /external/mesa3d/src/glsl/builtins/tools/
generate_builtins.py 99 def write_profile(filename, profile):
103 print '#error builtins profile', profile, 'failed to compile'
106 print 'static const char prototypes_for_' + profile + '[] ='
116 print 'static const char *functions_for_' + profile + ' [] = {'
123 for (filename, profile) in profiles:
124 write_profile(filename, profile)
271 for (filename, profile) in profiles:
272 if profile.endswith('_vert'):
274 elif profile.endswith('_frag')
    [all...]
  /external/e2fsprogs/lib/support/
profile.c 2 * profile.c -- A simple configuration file parsing "library in a file"
4 * The profile library was originally written by Theodore Ts'o in 1995
74 #include "profile.h"
87 * This is the structure which stores the profile information for a
106 * The profile flags
123 * Used by the profile iterator in prof_get.c
153 /* profile parser declarations */
211 (prf_file_t profile);
213 static errcode_t profile_get_value(profile_t profile, const char *name,
307 profile_t profile; local
1272 profile_t profile; member in struct:profile_iterator
1872 profile_t profile; local
    [all...]
  /external/libvorbis/test/
Makefile.am 18 profile:
19 $(MAKE) all CFLAGS="@PROFILE@"

Completed in 610 milliseconds

1 2 3 4 56 7 8 91011>>