HomeSort by relevance Sort by last modified time
    Searched refs:profiles (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/boringssl/src/ssl/
d1_srtp.cc 164 UniquePtr<STACK_OF(SRTP_PROTECTION_PROFILE)> profiles(
166 if (profiles == nullptr) {
183 if (!sk_SRTP_PROTECTION_PROFILE_push(profiles.get(), profile)) {
192 *out = std::move(profiles);
196 int SSL_CTX_set_srtp_profiles(SSL_CTX *ctx, const char *profiles) {
197 return ssl_ctx_make_profiles(profiles, &ctx->srtp_profiles);
200 int SSL_set_srtp_profiles(SSL *ssl, const char *profiles) {
202 ssl_ctx_make_profiles(profiles, &ssl->config->srtp_profiles);
224 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles) {
226 return !SSL_CTX_set_srtp_profiles(ctx, profiles);
    [all...]
  /external/perf_data_converter/src/
perf_to_profile.cc 25 const auto profiles = perftools::RawPerfDataToProfiles( local
28 // With kNoOptions, all of the PID profiles should be merged into a
30 if (profiles.size() != 1) {
33 const auto& profile = profiles[0]->data;
builder.h 18 namespace profiles { namespace in namespace:perftools
29 namespace profiles { namespace in namespace:perftools
31 // Provides mechanisms to facilitate the generation of profiles
34 // - Manages the creation of Functions for symbolized profiles.
117 } // namespace profiles
perf_data_converter.h 63 // Whether to produce multiple, per-process profiles from the single input
65 // still get a list of profiles back; it just has only one entry).
78 perftools::profiles::Profile data;
88 // Converts raw Linux perf data to a vector of process profiles.
91 // profiles. options governs other conversion options such as whether per-PID
92 // profiles should be returned or all processes should be merged into the same
95 // Returns a vector of process profiles, empty if any error occurs.
100 // Converts a PerfDataProto to a vector of process profiles.
  /external/ltp/testcases/realtime/scripts/
setenv.sh 18 export PROFILES_DIR=$TESTS_DIR/profiles
  /external/dynamic_depth/internal/dynamic_depth/
profiles.cc 1 #include "dynamic_depth/profiles.h"
11 void Profiles::GetNamespaces(
22 std::unique_ptr<Profiles> Profiles::FromProfileArray(
28 std::unique_ptr<Profiles> profiles(new Profiles());
29 profiles->profile_list_ = std::move(*profile_list);
30 return profiles;
33 std::unique_ptr<Profiles> Profiles::FromDeserializer
    [all...]
depth_jpeg.cc 32 // Check profiles
33 const Profiles* profiles = device->GetProfiles(); local
34 if (profiles == nullptr) {
39 const std::vector<const Profile*> profile_list = profiles->GetProfiles();
device.cc 59 auto profiles = Profiles::FromDeserializer(deserializer); local
71 params->profiles = std::move(profiles);
146 const Profiles* Device::GetProfiles() const { return params_->profiles.get(); }
226 if (params_->profiles && !params_->profiles->Serialize(&device_serializer)) {
274 if (params_->profiles) {
275 params_->profiles->GetNamespaces(ns_name_href_map)
    [all...]
  /frameworks/av/media/libmedia/
MediaProfiles.cpp 96 // Vendor-specific profiles
187 MediaProfiles::createVideoCodec(const char **atts, MediaProfiles *profiles)
205 CHECK((nCamcorderProfiles = profiles->mCamcorderProfiles.size()) >= 1);
206 profiles->mCamcorderProfiles[nCamcorderProfiles - 1]->mVideoCodec = videoCodec;
211 MediaProfiles::createAudioCodec(const char **atts, MediaProfiles *profiles)
227 CHECK((nCamcorderProfiles = profiles->mCamcorderProfiles.size()) >= 1);
228 profiles->mCamcorderProfiles[nCamcorderProfiles - 1]->mAudioCodec = audioCodec;
412 MediaProfiles *profiles = (MediaProfiles *) userData; local
414 createVideoCodec(atts, profiles);
416 createAudioCodec(atts, profiles);
851 MediaProfiles *profiles = new MediaProfiles; local
877 MediaProfiles *profiles = new MediaProfiles(); local
    [all...]
  /external/toolchain-utils/cwp/
demo_pipeline.sh 8 RECORD_FILE=/tmp/profiles.rio
9 COLUMN_FILE=/tmp/profiles.cio
32 rm /tmp/profiles.*
51 fileutil cp -f /tmp/profiles.cio-* ${CNS_LOC}
53 echo " dremel> define table t /cns/ag-d/home/${USER}/profiledb/profiles.cio-*"
  /art/profman/
boot_image_profile.h 33 // many different profiles need to have the class before it gets added to the boot profile.
37 // many different profiles need to have the class before it gets added to the boot profile.
41 // many different profiles need to have the method before it gets added to the boot profile.
45 // Merge a bunch of profiles together to generate a boot profile. Classes and methods are added
49 const std::vector<std::unique_ptr<const ProfileCompilationInfo>>& profiles,
boot_image_profile.cc 33 const std::vector<std::unique_ptr<const ProfileCompilationInfo>>& profiles,
37 for (const std::unique_ptr<const ProfileCompilationInfo>& profile : profiles) {
40 // but we want to only included classes that are in at least a few profiles.
58 // This counter is how many profiles contain the method as sampled or hot.
60 for (const std::unique_ptr<const ProfileCompilationInfo>& profile : profiles) {
104 // This counter is how many profiles contain the class.
106 for (const std::unique_ptr<const ProfileCompilationInfo>& profile : profiles) {
  /external/python/google-api-python-client/samples/analytics/
hello_analytics_api_v3.py 98 accounts, webproperties, or profiles.
110 profiles = service.management().profiles().list(
114 if profiles.get('items'):
115 return profiles.get('items')[0].get('id')
management_v3_reference.py 27 first account, then all the profiles for the first web property and finally
94 retrieves and prints all the profiles for the first web property,
117 profiles = service.management().profiles().list(
121 print_profiles(profiles)
123 if profiles.get('items'):
124 firstProfileId = profiles.get('items')[0].get('id')
201 """Prints all the profile info in the Profiles Collection.
205 Profiles collection.
208 print('------ Profiles Collection -------'
    [all...]
  /external/tensorflow/tensorflow/python/profiler/
pprof_profiler_test.py 42 profiles = pprof_profiler.get_profiles(graph, run_metadata)
43 self.assertEquals(0, len(profiles))
58 profiles = pprof_profiler.get_profiles(graph, run_metadata)
59 self.assertEquals(0, len(profiles))
125 profiles = pprof_profiler.get_profiles(graph, run_metadata)
126 self.assertEquals(1, len(profiles))
127 self.assertTrue('deviceA' in profiles)
128 self.assertEquals(expected_proto, str(profiles['deviceA']))
152 profiles = pprof_profiler.get_profiles(sess.graph, run_metadata)
153 self.assertEquals(1, len(profiles))
    [all...]
  /external/autotest/client/site_tests/network_BasicProfileProperties/
network_BasicProfileProperties.py 14 """Test that shill's DBus properties for profiles work."""
47 profiles = shill.get_profiles()
48 logging.info('Got profiles %r', profiles)
50 profile = profiles[-1]
  /external/dynamic_depth/includes/dynamic_depth/
device.h 20 #include "dynamic_depth/profiles.h"
34 std::unique_ptr<Profiles> profiles; member in struct:dynamic_depth::DeviceParams
43 profiles(nullptr),
55 profiles.get() == other.profiles.get() &&
97 const Profiles* GetProfiles() const;
  /frameworks/av/media/libmedia/include/media/
MediaProfiles.h 211 // Camcorder profiles (high/low) and timelapse profiles (high/low)
383 static VideoCodec* createVideoCodec(const char **atts, MediaProfiles *profiles);
384 static AudioCodec* createAudioCodec(const char **atts, MediaProfiles *profiles);
424 static void createDefaultCamcorderProfiles(MediaProfiles *profiles);
425 static void createDefaultVideoEncoders(MediaProfiles *profiles);
426 static void createDefaultAudioEncoders(MediaProfiles *profiles);
427 static void createDefaultVideoDecoders(MediaProfiles *profiles);
428 static void createDefaultAudioDecoders(MediaProfiles *profiles);
429 static void createDefaultEncoderOutputFileFormats(MediaProfiles *profiles);
    [all...]
  /external/autotest/server/cros/
camerabox_utils.py 99 profiles = root.findall('CamcorderProfiles')
101 len(profiles))
102 assert 1 <= len(profiles) <= 2
103 if len(profiles) == 2:
105 for p in profiles:
119 root.remove(profiles[0])
  /external/v4l2_codec2/vda/
v4l2_device.cc 101 std::vector<VideoCodecProfile> profiles; local
106 // TODO(posciak): need to query the device for supported H.264 profiles,
128 return profiles;
132 profiles.push_back(static_cast<VideoCodecProfile>(profile));
134 return profiles;
272 const auto& profiles = local
274 supported_profiles.insert(supported_profiles.end(), profiles.begin(),
275 profiles.end());
350 VideoDecodeAccelerator::SupportedProfiles profiles; local
369 profiles.push_back(profile)
    [all...]
  /external/perfetto/tools/trace_to_text/
trace_to_profile.cc 64 using GLine = ::perftools::profiles::Line;
65 using GMapping = ::perftools::profiles::Mapping;
66 using GLocation = ::perftools::profiles::Location;
67 using GProfile = ::perftools::profiles::Profile;
68 using GValueType = ::perftools::profiles::ValueType;
69 using GFunction = ::perftools::profiles::Function;
70 using GSample = ::perftools::profiles::Sample;
305 *output << "Wrote profiles to " << temp_dir << std::endl;
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
HwModule.cpp 92 void HwModule::setProfiles(const IOProfileCollection &profiles)
94 for (size_t i = 0; i < profiles.size(); i++) {
95 addProfile(profiles[i]);
280 const auto& profiles = audio_is_output_device(type) ? local
282 for (const auto& profile : profiles) {
374 const auto &profiles = (audio_is_output_device(type) ? hwModule->getOutputProfiles() : local
376 for (const auto &profile : profiles) {
417 const IOProfileCollection &profiles = audio_is_output_device(device->type()) ? local
419 for (const auto &profile : profiles) {
  /external/ImageMagick/coders/
mpc.c 170 *profiles;
229 profiles=(LinkedListInfo *) NULL;
580 if (profiles != (LinkedListInfo *) NULL)
581 profiles=DestroyLinkedList(profiles,
636 if (profiles == (LinkedListInfo *) NULL)
637 profiles=NewLinkedList(0);
638 (void) AppendValueToLinkedList(profiles,
799 if (profiles != (LinkedListInfo *) NULL)
800 profiles=DestroyLinkedList(profiles,RelinquishMagickMemory)
166 *profiles; local
    [all...]
  /external/harfbuzz_ng/test/subset/
subset_test_suite.py 46 self.profiles = set()
65 for profile in self.profiles:
66 profile = os.path.join(self._base_path(), "profiles", profile)
78 "PROFILES:": self.profiles,
  /external/adhd/cras/src/server/
cras_bt_profile.c 43 /* Profiles */
44 static struct cras_bt_profile *profiles; variable in typeref:struct:cras_bt_profile
385 DL_FOREACH(profiles, profile) {
417 DL_APPEND(profiles, profile);
426 DL_FOREACH(profiles, profile)
433 DL_FOREACH(profiles, profile) {
444 DL_FOREACH(profiles, profile)

Completed in 1524 milliseconds

1 2 3 4 5