Searched refs:profile (Results 1 - 25 of 333) sorted by relevance

1234567891011>>

/external/javasqlite/src/main/java/SQLite/
H A DProfile.java4 * Callback interface for SQLite's profile function.
10 * Callback to profile (ie log) one SQL statement
17 public void profile(String stmt, long est); method in interface:Profile
/external/e2fsprogs/e2fsck/
H A Dprofile_helpers.h2 * profile_helpers.h -- Function prototypes for profile helper functions
13 (profile_t profile, const char *const *names, char ***ret_values);
19 (profile_t profile, const char **names, char ***ret_names);
22 (profile_t profile, const char **names, char ***ret_names);
H A Dprofile.h2 * profile.h
48 * Used by the profile iterator in prof_get.c
62 (profile_t profile);
65 (profile_t profile, const char *def_string);
68 (profile_t profile, const char *name, const char *subname,
72 (profile_t profile, const char *name, const char *subname,
77 (profile_t profile, const char *name, const char *subname,
82 (profile_t profile, const char *name, const char *subname,
87 (profile_t profile, const char *name, const char *subname,
92 (profile_t profile, cons
[all...]
/external/vogar/src/vogar/
H A DRetrievedFilesFilter.java26 private final boolean profile; field in class:RetrievedFilesFilter
29 public RetrievedFilesFilter(boolean profile, File profileFile) { argument
30 this.profile = profile;
41 || (profile && file.getName().equals(profileFile.getName()))) {
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_decoder.c36 vl_profile_supported(struct pipe_screen *screen, enum pipe_video_profile profile) argument
39 switch (u_reduce_video_profile(profile)) {
49 enum pipe_video_profile profile,
64 profile,
71 switch (u_reduce_video_profile(profile)) {
73 return vl_create_mpeg12_decoder(pipe, profile, entrypoint, chroma_format,
48 vl_create_decoder(struct pipe_context *pipe, enum pipe_video_profile profile, enum pipe_video_entrypoint entrypoint, enum pipe_video_chroma_format chroma_format, unsigned width, unsigned height, unsigned max_references, bool expect_chunked_decode) argument
H A Dvl_decoder.h35 * check if a given profile is supported with shader based decoding
38 vl_profile_supported(struct pipe_screen *screen, enum pipe_video_profile profile);
45 enum pipe_video_profile profile,
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_video.h43 u_reduce_video_profile(enum pipe_video_profile profile) argument
45 switch (profile)
/external/autotest/client/site_tests/network_DefaultProfileCreation/
H A Dnetwork_DefaultProfileCreation.py18 Wipe the default profile, start shill, and check that a default
19 profile has been created.
21 Test that the default profile contains default values for properties
25 DEFAULT_PROFILE_PATH = '/var/cache/shill/default.profile'
48 profile = None
52 profile = f.read()
53 if profile:
58 if profile is None:
59 raise error.TestFail('shill should load a profile within '
63 raise error.TestFail('shill profile i
[all...]
/external/mesa3d/src/gallium/state_trackers/va/
H A Dva_config.c51 vlVaQueryConfigEntrypoints(VADriverContextP ctx, VAProfile profile, argument
59 switch (profile) {
62 VA_INFO("Using profile %08x\n",profile);
75 VA_ERROR("Unsupported profile %08x\n",profile);
85 vlVaGetConfigAttributes(VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint, argument
95 vlVaCreateConfig(VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint, argument
114 vlVaQueryConfigAttributes(VADriverContextP ctx, VAConfigID config_id, VAProfile *profile, argument
/external/v8/test/mjsunit/tools/
H A Dprofile.js29 // Files: tools/splaytree.js tools/codemap.js tools/consarray.js tools/profile.js
53 function countNodes(profile, traverseFunc) {
55 traverseFunc.call(profile, function () { count++; });
61 this.profile = new Profile();
75 this.profile.addLibrary('lib1', 0x11000, 0x12000);
76 this.profile.addStaticCode('lib1-f1', 0x11100, 0x11900);
77 this.profile.addStaticCode('lib1-f2', 0x11200, 0x11500);
78 this.profile.addLibrary('lib2', 0x21000, 0x22000);
79 this.profile.addStaticCode('lib2-f1', 0x21100, 0x21900);
80 this.profile
314 var profile = testDriver.profile.getTopDownProfile('lib2-f1'); variable
[all...]
/external/autotest/client/site_tests/network_ShillInitScripts/
H A Dmock_flimflam.py28 def CreateProfile(self, profile):
29 """ Creates a profile.
31 @param profile string name of profile to create.
34 self.add_method_call('CreateProfile', profile)
40 def RemoveProfile(self, profile):
41 """ Removes a profile.
43 @param profile string name of profile to remove.
46 self.add_method_call('RemoveProfile', profile)
[all...]
/external/fio/
H A Dprofile.c2 #include "profile.h"
9 struct profile_ops *find_profile(const char *profile) argument
16 if (!strcmp(profile, ops->name))
25 int load_profile(const char *profile) argument
29 dprint(FD_PROFILE, "loading profile '%s'\n", profile);
31 ops = find_profile(profile);
34 log_err("fio: profile %s prep failed\n", profile);
41 log_err("fio: profile '
[all...]
/external/mesa3d/src/glsl/builtins/tools/
H A Dgenerate_builtins.py99 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
[all...]
/external/libpng/contrib/examples/
H A Diccfrompng.c34 static png_byte no_profile[] = "no profile";
43 /* Initialize for error or no profile: */
69 png_bytep profile; local
71 if (png_get_iCCP(png_ptr, info_ptr, &name, &compression_type, &profile,
76 memcpy(result, profile, *proflen);
79 png_error(png_ptr, "OOM allocating profile buffer");
99 png_bytep profile = extract(fp, &proflen); local
101 if (profile != NULL && profile != no_profile)
127 if (fwrite(profile, profle
[all...]
/external/vogar/src/vogar/target/
H A DCaliperRunner.java31 private final boolean profile; field in class:CaliperRunner
35 public CaliperRunner(TargetMonitor monitor, boolean profile, Class<?> testClass, argument
38 this.profile = profile;
60 if (profile) {
H A DRunnerFactory.java35 int timeoutSeconds, boolean profile, String[] args);
33 newRunner(TargetMonitor monitor, String qualification, Class<?> klass, AtomicReference<String> skipPastReference, TestEnvironment testEnvironment, int timeoutSeconds, boolean profile, String[] args) argument
/external/icu/icu4c/source/common/
H A Dusprep.cpp137 UStringPrepProfile *profile = NULL; local
156 profile = (UStringPrepProfile *) e->value.pointer;
159 if ((noRefCount== FALSE && profile->refCount == 0) ||
165 usprep_unload(profile);
175 uprv_free(profile);
222 loadData(UStringPrepProfile* profile, argument
259 if(profile->sprepData==NULL) {
260 profile->sprepData=dataMemory;
262 uprv_memcpy(&profile->indexes, p, sizeof(profile
306 UStringPrepProfile* profile = NULL; local
420 usprep_close(UStringPrepProfile* profile) argument
508 usprep_map( const UStringPrepProfile* profile, const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, int32_t options, UParseError* parseError, UErrorCode* status ) argument
640 usprep_prepare( const UStringPrepProfile* profile, const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, int32_t options, UParseError* parseError, UErrorCode* status ) argument
[all...]
/external/autotest/client/site_tests/hardware_VideoDecodeCapable/
H A Dhardware_VideoDecodeCapable.py52 def verifyProfile(self, vaapi, display, profile):
53 """Verifies the given profile satisfies the requirements.
62 @param profile: the profile under test
66 entrypoints = vaapi.query_entrypoints(display, profile)
67 logging.info('Entrypoints of profile %s: %s', profile, entrypoints)
71 rt_format = vaapi.get_rt_format(display, profile, VAEntrypointVLD)
104 for profile in self.REQUESTED_VAAPI_PROFILES:
105 self.assertTrue(profile i
[all...]
/external/deqp/scripts/egl/
H A Dcommon.py75 def getInterface (registry, api, version=None, profile=None, **kwargs):
76 spec = khr_util.registry.spec(registry, api, version, profile, **kwargs)
102 profile = check(api, version)
103 if profile is True:
104 profile = None
105 elif profile is False:
107 iface = getInterface(registry, api, version=version, profile=profile)
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dprofile.rb40 recognition code generated by ANTLR when called with the <tt>-profile</tt>
50 def klass.profile? singleton method in class:ANTLR3.Profile.ParserEvents.included
66 def profile method in class:ANTLR3.Profile.ParserEvents
67 @debug_listener.profile
188 When ANTLR is run with the <tt>-profile</tt> switch, it generates recognition
213 attr_reader :profile
219 @profile = nil
229 @profile = Profile.new
240 @profile.grammar_file = grammar_file_name
241 @profile
[all...]
/external/aac/libMpegTPEnc/src/
H A Dtpenc_adif.h103 int profile; member in struct:__anon181
H A Dtpenc_asc.h110 * \param profile the MPEG Audio profile to be used
121 int profile,
/external/compiler-rt/lib/profile/
H A DMakefile.mk1 #===- lib/profile/Makefile.mk ------------------------------*- Makefile -*--===#
10 ModuleName := profile
/external/autotest/client/cros/scripts/
H A Dprofile18 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. """
50 print 'Removing profile
[all...]
/external/deqp/scripts/opengl/
H A Dsrc_util.py109 def getInterface (registry, api, version=None, profile=None, **kwargs):
110 spec = khr_util.registry.spec(registry, api, version, profile, **kwargs)
111 if api == 'gl' and profile == 'core' and version < "3.2":
131 profile = check(api, version)
132 if profile is True:
133 profile = None
134 elif profile is False:
136 iface = getInterface(registry, api, version=version, profile=profile)

Completed in 809 milliseconds

1234567891011>>