Home
last modified time | relevance | path

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

1234

/external/boringssl/src/ssl/
Dd1_srtp.cc163 STACK_OF(SRTP_PROTECTION_PROFILE) *profiles = in ssl_ctx_make_profiles()
165 if (profiles == NULL) { in ssl_ctx_make_profiles()
182 if (!sk_SRTP_PROTECTION_PROFILE_push(profiles, profile)) { in ssl_ctx_make_profiles()
192 *out = profiles; in ssl_ctx_make_profiles()
196 sk_SRTP_PROTECTION_PROFILE_free(profiles); in ssl_ctx_make_profiles()
200 int SSL_CTX_set_srtp_profiles(SSL_CTX *ctx, const char *profiles) { in SSL_CTX_set_srtp_profiles() argument
201 return ssl_ctx_make_profiles(profiles, &ctx->srtp_profiles); in SSL_CTX_set_srtp_profiles()
204 int SSL_set_srtp_profiles(SSL *ssl, const char *profiles) { in SSL_set_srtp_profiles() argument
205 return ssl_ctx_make_profiles(profiles, &ssl->srtp_profiles); in SSL_set_srtp_profiles()
228 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles) { in SSL_CTX_set_tlsext_use_srtp() argument
[all …]
/external/toolchain-utils/cwp/
Ddemo_pipeline.sh8 RECORD_FILE=/tmp/profiles.rio
9 COLUMN_FILE=/tmp/profiles.cio
32 rm /tmp/profiles.*
51 fileutil cp -f /tmp/profiles.cio-* ${CNS_LOC}
/external/v4l2_codec2/vda/
Dv4l2_device.cc105 std::vector<VideoCodecProfile> profiles; in V4L2PixFmtToVideoCodecProfiles() local
135 return profiles; in V4L2PixFmtToVideoCodecProfiles()
139 profiles.push_back(static_cast<VideoCodecProfile>(profile)); in V4L2PixFmtToVideoCodecProfiles()
141 return profiles; in V4L2PixFmtToVideoCodecProfiles()
277 const auto& profiles = in GetSupportedDecodeProfiles() local
279 supported_profiles.insert(supported_profiles.end(), profiles.begin(), in GetSupportedDecodeProfiles()
280 profiles.end()); in GetSupportedDecodeProfiles()
355 VideoDecodeAccelerator::SupportedProfiles profiles; in EnumerateSupportedDecodeProfiles() local
374 profiles.push_back(profile); in EnumerateSupportedDecodeProfiles()
382 return profiles; in EnumerateSupportedDecodeProfiles()
/external/ImageMagick/tests/
Dwandtest.c5169 **profiles, in main() local
5474 profiles=MagickGetImageProfiles(magick_wand,"*",&number_profiles); in main()
5475 if (profiles != (char **) NULL) in main()
5479 (void) FormatLocaleFile(stdout," %s\n",profiles[i]); in main()
5480 profiles[i]=(char *) MagickRelinquishMemory(profiles[i]); in main()
5482 profiles=(char **) MagickRelinquishMemory(profiles); in main()
/external/ImageMagick/MagickCore/
Dprofile.c150 if (clone_image->profiles != (void *) NULL) in CloneImageProfiles()
152 if (image->profiles != (void *) NULL) in CloneImageProfiles()
154 image->profiles=CloneSplayTree((SplayTreeInfo *) clone_image->profiles, in CloneImageProfiles()
190 if (image->profiles == (SplayTreeInfo *) NULL) in DeleteImageProfile()
193 return(DeleteNodeFromSplayTree((SplayTreeInfo *) image->profiles,name)); in DeleteImageProfile()
220 if (image->profiles != (SplayTreeInfo *) NULL) in DestroyImageProfiles()
221 image->profiles=DestroySplayTree((SplayTreeInfo *) image->profiles); in DestroyImageProfiles()
258 if (image->profiles == (SplayTreeInfo *) NULL) in GetImageProfile()
261 image->profiles,name); in GetImageProfile()
293 if (image->profiles == (SplayTreeInfo *) NULL) in GetNextImageProfile()
[all …]
/external/autotest/client/site_tests/network_BasicProfileProperties/
Dnetwork_BasicProfileProperties.py47 profiles = shill.get_profiles()
48 logging.info('Got profiles %r', profiles)
50 profile = profiles[-1]
/external/clang/docs/
DSourceBasedCodeCoverage.rst82 is specified, the runtime creates a pool of N raw profiles which are used for
97 Raw profiles have to be **indexed** before they can be used to generate
99 named because it can combine and index profiles at the same time:
164 indexed profiles. This option should not be used if the indexed profile will
167 * Raw profiles can be discarded after they are indexed. Advanced use of the
173 indexed profiles. To combine profiling data from multiple runs of a program,
184 profile format. Raw profiles may be dependent on the specific compiler
185 revision used to generate them. It's inadvisable to store raw profiles for
200 profile output path and to register a writer function. To collect profiles
/external/ImageMagick/coders/
Dmpc.c165 *profiles; in ReadMPCImage() local
225 profiles=(LinkedListInfo *) NULL; in ReadMPCImage()
605 if (profiles == (LinkedListInfo *) NULL) in ReadMPCImage()
606 profiles=NewLinkedList(0); in ReadMPCImage()
607 (void) AppendValueToLinkedList(profiles, in ReadMPCImage()
803 if (profiles != (LinkedListInfo *) NULL) in ReadMPCImage()
817 ResetLinkedListIterator(profiles); in ReadMPCImage()
818 name=(const char *) GetNextValueInLinkedList(profiles); in ReadMPCImage()
827 name=(const char *) GetNextValueInLinkedList(profiles); in ReadMPCImage()
829 profiles=DestroyLinkedList(profiles,RelinquishMagickMemory); in ReadMPCImage()
[all …]
Dmiff.c422 *profiles; in ReadMIFFImage() local
512 profiles=(LinkedListInfo *) NULL; in ReadMIFFImage()
895 if (profiles == (LinkedListInfo *) NULL) in ReadMIFFImage()
896 profiles=NewLinkedList(0); in ReadMIFFImage()
897 (void) AppendValueToLinkedList(profiles, in ReadMIFFImage()
1125 if (profiles != (LinkedListInfo *) NULL) in ReadMIFFImage()
1136 ResetLinkedListIterator(profiles); in ReadMIFFImage()
1137 name=(const char *) GetNextValueInLinkedList(profiles); in ReadMIFFImage()
1150 name=(const char *) GetNextValueInLinkedList(profiles); in ReadMIFFImage()
1152 profiles=DestroyLinkedList(profiles,RelinquishMagickMemory); in ReadMIFFImage()
[all …]
/external/ltp/testcases/realtime/doc/
DHOWTO_ADD_TESTS19 3. Modify tests profiles if to be run automatically
21 - other profiles if needed
/external/ImageMagick/MagickWand/
Dmagick-property.c715 if (wand->images->profiles == (SplayTreeInfo *) NULL) in MagickGetImageProfile()
764 **profiles; in MagickGetImageProfiles() local
788 profiles=(char **) AcquireQuantumMemory(length,sizeof(*profiles)); in MagickGetImageProfiles()
789 if (profiles == (char **) NULL) in MagickGetImageProfiles()
801 profiles=(char **) ResizeQuantumMemory(profiles,length, in MagickGetImageProfiles()
802 sizeof(*profiles)); in MagickGetImageProfiles()
803 if (profiles == (char **) NULL) in MagickGetImageProfiles()
811 profiles[i]=ConstantString(property); in MagickGetImageProfiles()
816 profiles[i]=(char *) NULL; in MagickGetImageProfiles()
818 return(profiles); in MagickGetImageProfiles()
/external/llvm/test/tools/llvm-profdata/
Dweight-sample.test1 Tests for weighted merge of sample profiles.
3 1- Merge the foo and bar profiles with unity weight and verify the combined output
23 2- Merge the foo and bar profiles with weight 3x and 5x respectively and verify the combined output
Dweight-instr.test1 Tests for weighted merge of instrumented profiles.
3 1- Merge the foo and bar profiles with unity weight and verify the combined output
38 2- Merge the foo and bar profiles with weight 3x and 5x respectively and verify the combined output
Doverflow-instr.test1 Tests for overflow when merging instrumented profiles.
/external/valgrind/docs/internals/
Dhowto_oprofile.txt35 w/ callgraph profiles are useless. (oprofile doesn't do CFI based
39 2. even at the best of times the callgraph profiles seem pretty
/external/ltp/testcases/realtime/scripts/
Dsetenv.sh18 export PROFILES_DIR=$TESTS_DIR/profiles
/external/ltp/utils/ffsb-6.0-rc2/
Dpublic-description2 measurement tool. It uses customizable profiles to measure of different
/external/v8/src/profiler/
Dcpu-profiler.cc200 return profiles_->profiles()->length(); in GetProfilesCount()
205 return profiles_->profiles()->at(index); in GetProfile()
218 if (profiles_->profiles()->is_empty() && !is_profiling_) { in DeleteProfile()
/external/autotest/client/tests/ffsb/
Dcontrol10 profiles to measure of different workloads, and it supports
/external/skia/resources/
Dslides_content.lua37 - ES2 -vs- ES3 -vs- Desktop profiles
/external/noto-fonts/other/
DREADME.android16 built into different font profiles.
/external/llvm/docs/
DBranchWeightMetadata.rst128 the case of instrumentation-based profiles). In the case of sampling-based
129 profiles, this counter is an approximation of how many times the function was
/external/autotest/server/site_tests/network_WiFi_ProfileBasic/
Dcontrol14 Tests basic operations on profiles and profile entries. Tests that we
/external/autotest/client/cros/networking/
Dwifi_proxy.py30 profiles = self.get_profiles()
31 for profile in profiles:
/external/toolchain-utils/crosperf/experiment_files/
DREADME27 # Telemetry's page_cycler_v2.morejs. In addition, it profiles

1234