Home
last modified time | relevance | path

Searched full:profiles (Results 1 – 25 of 960) sorted by relevance

12345678910>>...39

/external/tpm2-tss/src/tss2-fapi/
Difapi_profiles.c39 /** Initialize the profiles information in the context in an asynchronous way
41 * Load the profile information from disk, fill the dictionary of loaded profiles and fill
46 * @param[in,out] profiles The context for the profiles information.
58 IFAPI_PROFILES *profiles, in ifapi_profiles_initialize_async() argument
66 check_not_null(profiles); in ifapi_profiles_initialize_async()
69 memset(profiles, 0, sizeof(*profiles)); in ifapi_profiles_initialize_async()
71 profiles->default_name = strdup(defaultprofile); in ifapi_profiles_initialize_async()
72 check_oom(profiles->default_name); in ifapi_profiles_initialize_async()
74 r = ifapi_io_dirfiles(profilesdir, &profiles->filenames, &profiles->num_profiles); in ifapi_profiles_initialize_async()
75 return_if_error(r, "Reading profiles from profiles dir"); in ifapi_profiles_initialize_async()
[all …]
Difapi_profiles.h13 /** Internal structure for FAPI profiles
41 /* An entry for the dictionary of loaded profiles */
52 /* Dictionary of loaded profiles */
53 struct IFAPI_PROFILE_ENTRY *profiles; member
55 /* Size of the loaded profiles dictionary */
62 IFAPI_PROFILES *profiles,
69 IFAPI_PROFILES *profiles,
74 const IFAPI_PROFILES *profiles,
80 IFAPI_PROFILES *profiles);
/external/dynamic_depth/internal/dynamic_depth/
Dprofiles.cc1 #include "dynamic_depth/profiles.h"
11 void Profiles::GetNamespaces( in GetNamespaces()
22 std::unique_ptr<Profiles> Profiles::FromProfileArray( in FromProfileArray()
28 std::unique_ptr<Profiles> profiles(new Profiles()); in FromProfileArray() local
29 profiles->profile_list_ = std::move(*profile_list); in FromProfileArray()
30 return profiles; in FromProfileArray()
33 std::unique_ptr<Profiles> Profiles::FromDeserializer( in FromDeserializer()
35 std::unique_ptr<Profiles> profiles(new Profiles()); in FromDeserializer() local
39 DynamicDepthConst::Namespace(DynamicDepthConst::Profiles()), in FromDeserializer()
40 DynamicDepthConst::Profiles(), i); in FromDeserializer()
[all …]
/external/ltp/testcases/lib/
Dtst_security.sh16 local profiles
22 profiles=
24 tst_apparmor_used_profile $cmd && profiles="$cmd $profiles"
26 [ -z "$profiles" ] && profiles="none"
27 tst_res TINFO "loaded AppArmor profiles: $profiles"
35 profiles=
37 tst_selinux_used_profile $cmd && profiles="$cmd $profiles"
39 [ -z "$profiles" ] && profiles="none"
40 tst_res TINFO "loaded SELinux profiles: $profiles"
44 # Detect whether AppArmor profiles are loaded
[all …]
/external/oss-fuzz/infra/base-images/base-runner/gocoverage/gocovmerge/
Dgocovmerge.go18 log.Fatalf("cannot merge profiles with different modes")
71 func addProfile(profiles []*cover.Profile, p *cover.Profile) []*cover.Profile {
72 i := sort.Search(len(profiles), func(i int) bool { return profiles[i].FileName >= p.FileName })
73 if i < len(profiles) && profiles[i].FileName == p.FileName {
74 mergeProfiles(profiles[i], p)
76 profiles = append(profiles, nil)
77 copy(profiles[i+1:], profiles[i:])
78 profiles[i] = p
80 return profiles
83 func dumpProfiles(profiles []*cover.Profile, out io.Writer) {
[all …]
/external/dynamic_depth/includes/dynamic_depth/
Dprofiles.h15 // Implements the Device:Profiles field from the Dynamic Depth specification,
17 class Profiles : public Element {
28 // Creates this object from the given profiles. If the list is empty, returns
30 static std::unique_ptr<Profiles> FromProfileArray(
33 // Returns the deserialized profiles in a Profiles object, a unique_ptr owning
34 // nothing if parsing failed for all the profiles.
35 static std::unique_ptr<Profiles> FromDeserializer(
44 Profiles(const Profiles&) = delete;
45 void operator=(const Profiles&) = delete;
48 Profiles() = default;
Ddevice.h20 #include "dynamic_depth/profiles.h"
34 std::unique_ptr<Profiles> profiles; member
43 profiles(nullptr), in DeviceParams()
55 profiles.get() == other.profiles.get() &&
97 const Profiles* GetProfiles() const;
/external/libcups/scheduler/
Dcolorman.c111 cups_array_t *profiles,
114 static void colord_create_profile(cups_array_t *profiles,
134 * 'cupsdRegisterColor()' - Register vendor color profiles in a PPD file.
194 * 'cupsdUnregisterColor()' - Unregister vendor color profiles in a PPD file.
262 * Find localized names for the color profiles... in apple_init_profile()
322 * 'apple_register_profiles()' - Register color profiles for a printer.
347 int num_profiles; /* Number of profiles */ in apple_register_profiles()
356 CFMutableDictionaryRef profiles, /* Dictionary of profiles */ in apple_register_profiles() local
377 * See if we have any profiles... in apple_register_profiles()
386 snprintf(iccfile, sizeof(iccfile), "%s/profiles/%s", DataDir, in apple_register_profiles()
[all …]
/external/llvm-project/llvm/unittests/XRay/
DProfileTest.cpp186 std::vector<Profile> Profiles(3); in TEST() local
187 EXPECT_FALSE(errorToBool(Profiles[0].addBlock(Profile::Block{ in TEST()
189 {{Profiles[0].internPath({2, 1}), Profile::Data{1, 1000}}}}))); in TEST()
190 EXPECT_FALSE(errorToBool(Profiles[1].addBlock(Profile::Block{ in TEST()
192 {{Profiles[1].internPath({2, 1}), Profile::Data{1, 1000}}}}))); in TEST()
193 EXPECT_FALSE(errorToBool(Profiles[2].addBlock(Profile::Block{ in TEST()
195 {{Profiles[2].internPath({2, 1}), Profile::Data{1, 1000}}}}))); in TEST()
196 Profile Merged = std::accumulate(Profiles.begin(), Profiles.end(), Profile(), in TEST()
212 std::vector<Profile> Profiles(2); in TEST() local
214 // Set up the blocks for two different threads in Profiles[0]. in TEST()
[all …]
/external/oss-fuzz/projects/orbit/
Dbuild.sh28 sed -i 's/\[settings\]/include(libfuzzer_base)\n\n[settings]/' ~/.conan/profiles/default
29 echo "CFLAGS=\$BASE_CFLAGS" >> ~/.conan/profiles/default
30 echo "CXXFLAGS=\$BASE_CXXFLAGS" >> ~/.conan/profiles/default
31 echo "LDFLAGS=\$BASE_LDFLAGS" >> ~/.conan/profiles/default
32 echo "OrbitProfiler:CFLAGS=\$BASE_CFLAGS $CFLAGS" >> ~/.conan/profiles/default
33 echo "OrbitProfiler:CXXFLAGS=\$BASE_CFLAGS $CXXFLAGS" >> ~/.conan/profiles/default
36 # echo "llvm:CFLAGS=\$BASE_CFLAGS $CFLAGS" >> ~/.conan/profiles/default
37 # echo "llvm:CXXFLAGS=\$BASE_CXXFLAGS $CXXFLAGS" >> ~/.conan/profiles/default
42 …pointer -gline-tables-only -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION" >> ~/.conan/profiles/default
43 …tables-only -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -stdlib=libc++" >> ~/.conan/profiles/default
/external/adhd/cras/src/server/
Dcras_bt_device.c53 * Attemp to connect profiles which haven't been ready every 3 retries.
79 * connected_profiles - OR'ed all connected audio profiles.
80 * profiles - OR'ed by all audio profiles this device supports.
81 * hidden_profiles - OR'ed by all audio profiles this device actually
87 * conn_watch_timer - The timer used to watch connected profiles and start
88 * BT audio input/ouput when all profiles are ready.
108 unsigned int profiles; member
315 syslog(LOG_ERR, "Removing dev with connected profiles %u", in cras_bt_device_remove()
391 return !!(device->profiles & profile); in cras_bt_device_supports_profile()
516 BTLOG(btlog, BT_AUDIO_GATEWAY_INIT, device->profiles, 0); in cras_bt_device_audio_gateway_initialized()
[all …]
/external/tensorflow/tensorflow/python/profiler/
Dpprof_profiler_test.py42 profiles = pprof_profiler.get_profiles(graph, run_metadata)
43 self.assertEqual(0, len(profiles))
58 profiles = pprof_profiler.get_profiles(graph, run_metadata)
59 self.assertEqual(0, len(profiles))
125 profiles = pprof_profiler.get_profiles(graph, run_metadata)
126 self.assertEqual(1, len(profiles))
127 self.assertTrue('deviceA' in profiles)
128 self.assertEqual(expected_proto, str(profiles['deviceA']))
152 profiles = pprof_profiler.get_profiles(sess.graph, run_metadata)
153 self.assertEqual(1, len(profiles))
[all …]
/external/python/google-api-python-client/docs/dyn/
Danalytics_v3.management.webproperties.html116 …"childLink": { # Child link for this web property. Points to the list of views (profiles) for this…
117 "href": "A String", # Link to the list of views (profiles) for this web property.
118 "type": "analytics#profiles", # Type of the parent link. Its value is "analytics#profiles".
161 …"childLink": { # Child link for this web property. Points to the list of views (profiles) for this…
162 "href": "A String", # Link to the list of views (profiles) for this web property.
163 "type": "analytics#profiles", # Type of the parent link. Its value is "analytics#profiles".
200 …"childLink": { # Child link for this web property. Points to the list of views (profiles) for this…
201 "href": "A String", # Link to the list of views (profiles) for this web property.
202 "type": "analytics#profiles", # Type of the parent link. Its value is "analytics#profiles".
252 …"childLink": { # Child link for this web property. Points to the list of views (profiles) for this…
[all …]
Danalytics_v2_4.management.profiles.html75 …nagement.html">management</a> . <a href="analytics_v2_4.management.profiles.html">profiles</a></h1>
79 <p class="firstline">Lists views (profiles) to which the user has access.</p>
83 <pre>Lists views (profiles) to which the user has access.
86 …accountId: string, Account ID for the views (profiles) to retrieve. Can either be a specific accou…
87 …webPropertyId: string, Web property ID for the views (profiles) to retrieve. Can either be a speci…
88 max_results: integer, The maximum number of views (profiles) to include in this response.
/external/freetype/docs/
Draster.txt18 2. Profiles and Spans
20 b. Decomposing Outlines into Profiles
22 d. Computing Profiles Extents
23 e. Computing Profiles Coordinates
164 2. Profiles and Spans
235 b. Decomposing Outlines into Profiles
247 `decomposition' which converts the glyph into *profiles*.
261 | | profiles | |
276 | | \ \ profiles | \ |
286 A more general contour can be made of more than two profiles:
[all …]
/external/crosvm/devices/src/virtio/video/decoder/
Dcapability.rs42 // Stores supporterd profiles and levels for each format.
43 profiles: BTreeMap<Format, Vec<Profile>>, field
54 let mut profiles: BTreeMap<Format, Vec<Profile>> = Default::default(); in new() localVariable
64 match profiles.entry(format) { in new()
80 let levels: BTreeMap<Format, Vec<Level>> = if profiles.contains_key(&Format::H264) { in new()
120 profiles, in new()
129 let profiles = self.profiles.get(&fmt)?; in query_control() localVariable
131 profiles.iter().copied().collect(), in query_control()
/external/connectedappssdk/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/
DInterfaceGenerator.java143 MethodSpec.methodBuilder("profiles") in generateCrossProfileTypeInterface()
146 .add("Run a method on the given profiles, if accessible.\n\n") in generateCrossProfileTypeInterface()
148 "<p>This will deduplicate profiles to ensure that the method is only run" in generateCrossProfileTypeInterface()
152 .addParameter(ArrayTypeName.of(PROFILE_CLASSNAME), "profiles") in generateCrossProfileTypeInterface()
246 .addJavadoc("Run a method on supplier profiles, if accessible.\n\n") in generateSuppliersMethod()
248 "<p>When run from the primary ($1L) profile, supplier profiles are the primary ($1L)" in generateSuppliersMethod()
249 + " and secondary ($2L) profiles. When run from the secondary ($2L) profile," in generateSuppliersMethod()
250 + " supplier profiles includes only the secondary ($2L) profile.\n\n", in generateSuppliersMethod()
256 .addJavadoc("Run a method on supplier profiles, if accessible.\n\n") in generateSuppliersMethod()
258 "<p>When run from the primary profile, supplier profiles are the primary and" in generateSuppliersMethod()
[all …]
/external/rust/crates/quiche/deps/boringssl/src/ssl/
Dd1_srtp.cc164 UniquePtr<STACK_OF(SRTP_PROTECTION_PROFILE)> profiles( in ssl_ctx_make_profiles() local
166 if (profiles == nullptr) { in ssl_ctx_make_profiles()
183 if (!sk_SRTP_PROTECTION_PROFILE_push(profiles.get(), profile)) { in ssl_ctx_make_profiles()
192 *out = std::move(profiles); in ssl_ctx_make_profiles()
196 int SSL_CTX_set_srtp_profiles(SSL_CTX *ctx, const char *profiles) { in SSL_CTX_set_srtp_profiles() argument
197 return ssl_ctx_make_profiles(profiles, &ctx->srtp_profiles); in SSL_CTX_set_srtp_profiles()
200 int SSL_set_srtp_profiles(SSL *ssl, const char *profiles) { in SSL_set_srtp_profiles() argument
202 ssl_ctx_make_profiles(profiles, &ssl->config->srtp_profiles); in SSL_set_srtp_profiles()
224 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles) { in SSL_CTX_set_tlsext_use_srtp() argument
226 return !SSL_CTX_set_srtp_profiles(ctx, profiles); in SSL_CTX_set_tlsext_use_srtp()
[all …]
/external/boringssl/src/ssl/
Dd1_srtp.cc164 UniquePtr<STACK_OF(SRTP_PROTECTION_PROFILE)> profiles( in ssl_ctx_make_profiles() local
166 if (profiles == nullptr) { in ssl_ctx_make_profiles()
183 if (!sk_SRTP_PROTECTION_PROFILE_push(profiles.get(), profile)) { in ssl_ctx_make_profiles()
192 *out = std::move(profiles); in ssl_ctx_make_profiles()
196 int SSL_CTX_set_srtp_profiles(SSL_CTX *ctx, const char *profiles) { in SSL_CTX_set_srtp_profiles() argument
197 return ssl_ctx_make_profiles(profiles, &ctx->srtp_profiles); in SSL_CTX_set_srtp_profiles()
200 int SSL_set_srtp_profiles(SSL *ssl, const char *profiles) { in SSL_set_srtp_profiles() argument
202 ssl_ctx_make_profiles(profiles, &ssl->config->srtp_profiles); in SSL_set_srtp_profiles()
224 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles) { in SSL_CTX_set_tlsext_use_srtp() argument
226 return !SSL_CTX_set_srtp_profiles(ctx, profiles); in SSL_CTX_set_tlsext_use_srtp()
[all …]
/external/toolchain-utils/afdo_tools/
Drun_afdo_tryjob.py9 This tryjob will cause perf profiles to be collected as though we were running
36 implement) way for the bot that converts AFDO profiles into perf profiles to
76 help='Perf profiles will be automatically converted to AFDO profiles.')
97 raise ValueError("You can't tag profiles with the time + have "
110 # Send profiles to localmirror instead of chromeos-prebuilt. This should
111 # always be done, since sending profiles into production is bad. :)
121 # Tags the profiles with the current time of day. As detailed in the
/external/oss-fuzz/infra/base-images/base-runner/gocoverage/pprof-merge/
Dmain.go35 log.Fatal("Give profiles files as arguments")
38 var profiles []*profile.Profile
48 profiles = append(profiles, p)
51 merged, err := profile.Merge(profiles)
53 log.Fatalf("Cannot merge profiles: %v", err)
/external/openscreen/build/code_coverage/
Dmerge_lib.py44 A list of paths to profiles that had to be excluded to get the merge to
48 CalledProcessError: An error occurred merging profiles.
67 logging.error('Failed to merge profiles, return code (%d), output: %r' %
78 """Finds all the profiles in the given directory (recursively)."""
197 # 4. Delete profdata for invalid profiles if present.
234 """Merges the profiles produced by the shards using llvm-profdata.
237 input_dir (str): The path to traverse to find input profiles.
250 The list of profiles that had to be excluded to get the merge to
251 succeed and a list of profiles that had a counter overflow.
261 'to ensure that profiles are valid.')
[all …]
/external/tensorflow/tensorflow/compiler/tf2tensorrt/utils/
Dtrt_shape_optimization_profiles.h124 // Manages Optimization profiles during TRT Engine construction.
143 VLOG(1) << "Collected shape(s) " << DebugString(shapes) << " for profiles."; in AddShape()
149 // the given input shapes. Returns -1 if none of cached profiles are
154 // Creates optimization profiles and add them to the builder config.
165 // Creates optimization profiles profiles_ for the set of concrete input
167 // is used to ensure that the created optimization profiles are compatible
172 // Returns number of created profiles.
178 // Restores profiles from the engine (used after deserialization).
186 // The optimization profiles generated from input_shapes_.
192 // Whether the network/engine requires optimization profiles.
[all …]
/external/llvm-project/llvm/utils/
Dprepare-code-coverage-artifact.py7 - Collate raw profiles into one indexed profile.
21 print(':: Merging raw profiles...', end='')
24 manifest_path = os.path.join(profile_data_dir, 'profiles.manifest')
75 help='Path to the directory containing the raw profiles')
81 help='Only merge raw profiles together, skip report '
83 parser.add_argument('--preserve-profiles',
84 help='Do not delete raw profiles', action='store_true')
/external/llvm/utils/
Dprepare-code-coverage-artifact.py5 - Collate raw profiles into one indexed profile.
6 - Delete the raw profiles.
17 print ':: Merging raw profiles...',
20 manifest_path = os.path.join(profile_data_dir, 'profiles.manifest')
48 help='Path to the directory containing the raw profiles')

12345678910>>...39