HomeSort by relevance Sort by last modified time
    Searched refs:profile (Results 101 - 125 of 1873) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/perf_data_converter/src/
perf_data_converter_test.cc 8 // Tests converting perf.data files to sets of Profile
45 const auto& profile = pp->data; local
48 if (profile.mapping_size() <= 0) {
49 std::cerr << "Invalid mapping size: " << profile.mapping_size()
53 const Mapping& main = profile.mapping(0);
54 for (const auto& mapping : profile.mapping()) {
57 for (const auto& location : profile.location()) {
60 for (int i = 0; i < profile.sample_size(); ++i) {
61 const auto& sample = profile.sample(i);
70 key_stream << profile.string_table(main.filename()) << ":
302 const auto& profile = pps[0]->data; local
    [all...]
builder.h 26 #include "profile.pb.h"
36 // The caller should populate the profile with samples and their
42 // Adds a string to the profile string table if not already present.
46 // Adds a function with these attributes to the profile function
52 // Adds mappings for the currently running binary to the profile.
55 // Prepares the profile for encoding. Returns true on success.
56 // If the profile has no locations, inserts location using the
62 // Serializes and compresses the profile into a string, replacing
67 // Serializes and compresses a profile into a string, replacing its
70 static bool Marshal(const Profile &profile, string *output)
    [all...]
  /packages/services/Car/service/src/com/android/car/
BluetoothDeviceConnectionPolicy.java 81 * The policy also keeps track of the {Profile : DevicesThatCanConnectOnTheProfile} and when
83 * For every profile, the policy attempts to connect to the last connected device first. The policy
84 * maintains a list of connect-able devices for every profile, in the order of how recently they
85 * connected. The device that successfully connects on a profile is moved to the top of the list
86 * of devices for that profile, so the next time a connection attempt is made, the policy starts
99 // The main data structure that holds on to the {profile:list of known and connectible devices}
141 // Device & Profile currently being connected on
172 // connections each profile supports currently.
174 for (Integer profile : mProfilesToConnect) {
175 switch (profile) {
    [all...]
CarBluetoothUserService.java 39 // Profile Proxies.
59 * Setup connections to the profile proxy object to talk to the Bluetooth profile services
70 for (Integer profile : mProfilesToConnect) {
72 profile); local
77 * Close connections to the profile proxy object
87 // Close those profile proxy objects for profiles that have not yet disconnected
107 * Check if a proxy is available for the given profile to talk to the Profile's bluetooth
109 * @param profile - Bluetooth profile to check fo
    [all...]
  /external/ltp/testcases/realtime/
run.sh 36 usage: $(basename "$0") [-p profile] -t test-argument [-l num_of_loops]
39 -p profile Use profile instead of default (see
81 local profile
83 profile=$1
97 ./run_auto.sh $profile
127 local profile
129 profile=$1
168 run_test "$profile" "$test" "$2"
225 profile=$OPTAR
    [all...]
  /frameworks/base/telephony/java/android/telephony/ims/
ImsCallSession.java 109 ImsStreamMediaProfile profile) {
119 ImsCallProfile profile) {
149 ImsCallProfile profile) {
168 ImsCallProfile profile) {
177 ImsCallProfile profile) {
196 ImsCallProfile profile) {
208 ImsCallSession newSession, ImsCallProfile profile) {
235 ImsCallProfile profile) {
254 ImsCallProfile profile) {
266 ImsCallSession newSession, ImsCallProfile profile) {
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
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;
782 if ((parseContext.profile == EEsProfile && parseContext.version < 300) ||
783 (parseContext.profile != EEsProfile && parseContext.version < 130))
817 if (parseContext.profile == EEsProfile && parseContext.version >= 300
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
profile.rb 36 module Profile
37 =begin rdoc ANTLR3::Profile::ParserEvents
39 ANTLR3::Profile::ParserEvents expands basic debugging events for use by
40 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
95 unless const_defined?( :Profile )
96 Profile = Struct.new(
107 class Profile
    [all...]
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
HwModule.cpp 48 sp<IOProfile> profile = new OutputProfile(name); local
50 profile->addAudioProfile(new AudioProfile(config->format, config->channel_mask,
55 profile->addSupportedDevice(devDesc);
57 return addOutputProfile(profile);
60 status_t HwModule::addOutputProfile(const sp<IOProfile> &profile)
62 profile->attach(this);
63 mOutputProfiles.add(profile);
64 mPorts.add(profile);
68 status_t HwModule::addInputProfile(const sp<IOProfile> &profile)
70 profile->attach(this)
111 sp<IOProfile> profile = new InputProfile(name); local
    [all...]
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsCallSessionListener.aidl 36 void callSessionProgressing(in IImsCallSession session, in ImsStreamMediaProfile profile);
37 void callSessionStarted(in IImsCallSession session, in ImsCallProfile profile);
44 void callSessionHeld(in IImsCallSession session, in ImsCallProfile profile);
46 void callSessionHoldReceived(in IImsCallSession session, in ImsCallProfile profile);
47 void callSessionResumed(in IImsCallSession session, in ImsCallProfile profile);
49 void callSessionResumeReceived(in IImsCallSession session, in ImsCallProfile profile);
55 in IImsCallSession newSession, in ImsCallProfile profile);
64 in ImsCallProfile profile);
68 in ImsCallProfile profile);
74 in IImsCallSession newSession, in ImsCallProfile profile);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
hotshotmain.py 20 PROFILE = "hotshot.prof"
22 def run_hotshot(filename, profile, args):
23 prof = hotshot.Profile(profile)
28 stats = hotshot.stats.load(profile)
43 parser.add_option("-p", "--profile", action="store", default=PROFILE,
44 dest="profile", help='Specify profile file to use')
52 return run_hotshot(filename, options.profile, args[1:])
    [all...]
  /external/aac/libMpegTPEnc/src/
tpenc_adif.h 115 int profile; member in struct:__anon13871
tpenc_asc.h 124 * \param profile the MPEG Audio profile to be used
131 INT sampleRate, int instanceTagPCE, int profile,
  /external/libxaac/decoder/
ixheaacd_dec_main.h 25 ia_usac_data_struct *usac_data, WORD32 profile,
  /external/ltp/testcases/realtime/scripts/
run_c_files.sh 7 # Usage: $0 profile testname1 [ testname2 ... ]
9 # This script looks for *each* line in profile matching the
14 profile=$1
19 profile_path=$PROFILES_DIR/$profile
20 # Does profile exist?
21 [ ! -f "$profile_path" ] && { echo >&2 "$0: Could not find profile ($profile_path)" ; exit 1 ; }
  /external/python/cpython2/Tools/scripts/
hotshotmain.py 20 PROFILE = "hotshot.prof"
22 def run_hotshot(filename, profile, args):
23 prof = hotshot.Profile(profile)
28 stats = hotshot.stats.load(profile)
43 parser.add_option("-p", "--profile", action="store", default=PROFILE,
44 dest="profile", help='Specify profile file to use')
52 return run_hotshot(filename, options.profile, args[1:]
    [all...]
  /external/v4l2_codec2/vda/
video_decode_accelerator.cc 16 : profile(video_codec_profile) {}
22 s << "profile: " << GetProfileName(profile);
49 : profile(VIDEO_CODEC_PROFILE_UNKNOWN), encrypted_only(false) {}
65 s << " " << GetProfileName(sp.profile) << ": " << sp.min_resolution.width()
  /frameworks/av/media/libstagefright/include/media/stagefright/
MetaDataUtils.h 27 bool MakeAACCodecSpecificData(MetaDataBase &meta, unsigned profile, unsigned sampling_freq_index,
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
ld-sp-warn-cortex-m3.l 2 [^:]*:3: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
3 [^:]*:4: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
ld-sp-warn-cortex-m4.l 2 [^:]*:3: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
3 [^:]*:4: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
ld-sp-warn-v7.l 2 [^:]*:3: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
3 [^:]*:4: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
ld-sp-warn-v7e-m.l 2 [^:]*:3: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
3 [^:]*:4: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
ld-sp-warn-v7m.l 2 [^:]*:3: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
3 [^:]*:4: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
ld-sp-warn.l 2 [^:]*:3: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
3 [^:]*:4: Warning: This instruction may be unpredictable if executed on M-profile cores with interrupts enabled.
  /external/trappy/trappy/plotter/
IPythonConf.py 102 profile directory
147 """Get the name of the profile of the current IPython
152 raise ImportError("Cannot Find IPython Profile")
154 return ipy.profile
156 def get_ipython_dir(profile=None):
159 :param profile: The name of the IPython profile
160 :type profile: str
167 # IPython 4.0+ changes the position of files in the profile
175 if not profile
    [all...]

Completed in 587 milliseconds

1 2 3 45 6 7 8 91011>>