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

1 2 3 4 5 6 7 8 91011>>

  /external/javasqlite/src/main/java/SQLite/
Profile.java 4 * Callback interface for SQLite's profile function.
7 public interface Profile {
10 * Callback to profile (ie log) one SQL statement
17 public void profile(String stmt, long est); method in interface:Profile
  /packages/apps/Camera2/src/com/android/camera/stats/profiler/
Profile.java 20 * A profile is the primary mechanism used to start, stop,
23 public interface Profile {
28 public Profile start();
41 * Stop the profile.
46 * Stop the profile for a given reason.
Profiler.java 20 * Creates profile instances for timing or guarding
26 * Create a new profile object.
28 Profile create(String name);
GuardingProfiler.java 21 * will only write output messages if the profile time
43 public Profile create(String name) {
48 /** Start a new profile, but override the maxDuration */
49 public Profile create(String name, int maxDurationMillis) {
LoggingProfiler.java 31 public Profile create(String name) {
32 LoggingProfile profile = new LoggingProfile(mWriter, name); local
33 profile.start();
34 return profile;
Profilers.java 75 public Profile e(String name) {
83 public Profile w(String name) {
91 public Profile i(String name) {
99 public Profile d(String name) {
107 public Profile v(String name) {
115 public Profile guard(String name) {
119 public Profile guard(String name, int durationMillis) {
  /system/connectivity/shill/
profile_unittest.cc 17 #include "shill/profile.h"
53 Profile::Identifier id("rather", "irrelevant");
54 profile_ = new Profile(
58 // about the interaction between Profile and StoreInterface, we'll
70 bool ProfileInitStorage(const Profile::Identifier& id,
71 Profile::InitStorageOption storage_option,
77 ProfileRefPtr profile(
78 new Profile(control_interface(), mock_metrics_.get(), manager(), id,
80 bool ret = profile->InitStorage(storage_option, &error);
83 EXPECT_TRUE(profile->Save())
    [all...]
profile.cc 17 #include "shill/profile.h"
58 const char Profile::kUserProfileListPathname[] =
61 Profile::Profile(ControlInterface* control_interface,
83 &Profile::EnumerateAvailableServices);
84 HelpRegisterConstDerivedStrings(kEntriesProperty, &Profile::EnumerateEntries);
87 // Subtle: Profile is only directly instantiated for user
89 // |name.user|. So we want to CHECK here. But Profile is also the
96 // we really are destined to be a user Profile. In the latter
107 Profile::~Profile() {
    [all...]
mock_profile.cc 32 : Profile(control, metrics, manager, Identifier("mock"), base::FilePath(),
40 : Profile(control, metrics, manager, Identifier(identifier),
ephemeral_profile.h 24 #include "shill/profile.h"
34 // An in-memory profile that is not persisted to disk, but allows the
35 // promotion of entries contained herein to the currently active profile.
36 class EphemeralProfile : public Profile {
refptr_types.h 86 class Profile;
87 typedef scoped_refptr<const Profile> ProfileConstRefPtr;
88 typedef scoped_refptr<Profile> ProfileRefPtr;
profile.h 51 class Profile : public base::RefCounted<Profile> {
74 Profile(ControlInterface* control_interface,
81 virtual ~Profile();
83 // Set up persistent storage for this Profile.
87 // Set up stub storage for this Profile. The data will NOT be
91 // Remove the persistent storage for this Profile. It is an error to
108 // Returns true if |service| is new to this profile and was added,
121 // Ask |service| if it can configure itself from the profile. If it can,
127 // the service to point at this profile and return true. If not, retur
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
Environment.h 42 /// Profile an EnvironmentEntry for inclusion in a FoldingSet.
43 static void Profile(llvm::FoldingSetNodeID &ID,
49 void Profile(llvm::FoldingSetNodeID &ID) const {
50 Profile(ID, *this);
79 /// Profile - Profile the contents of an Environment object for use
81 static void Profile(llvm::FoldingSetNodeID& ID, const Environment* env) {
82 env->ExprBindings.Profile(ID);
85 /// Profile - Used to profile the contents of this object for inclusio
    [all...]
SymbolManager.h 69 virtual void Profile(llvm::FoldingSetNodeID& profile) = 0;
133 static void Profile(llvm::FoldingSetNodeID& profile, const TypedValueRegion* R) {
134 profile.AddInteger((unsigned) RegionValueKind);
135 profile.AddPointer(R);
138 void Profile(llvm::FoldingSetNodeID& profile) override {
139 Profile(profile, R)
    [all...]
DynamicTypeInfo.h 40 void Profile(llvm::FoldingSetNodeID &ID) const {
  /external/llvm/lib/Support/
APSInt.cpp 39 void APSInt::Profile(FoldingSetNodeID& ID) const {
41 APInt::Profile(ID);
  /external/clang/lib/StaticAnalyzer/Core/
BasicValueFactory.cpp 23 void CompoundValData::Profile(llvm::FoldingSetNodeID& ID, QualType T,
25 T.Profile(ID);
29 void LazyCompoundValData::Profile(llvm::FoldingSetNodeID& ID,
41 static inline void Profile(const SValData& X, llvm::FoldingSetNodeID& ID) {
42 X.first.Profile(ID);
48 static inline void Profile(const SValPair& X, llvm::FoldingSetNodeID& ID) {
49 X.first.Profile(ID);
50 X.second.Profile(ID);
77 X.Profile(ID);
112 CompoundValData::Profile(ID, T, Vals)
    [all...]
  /external/llvm/lib/IR/
AttributeImpl.h 68 void Profile(FoldingSetNodeID &ID) const {
70 Profile(ID, getKindAsEnum(), 0);
72 Profile(ID, getKindAsEnum(), getValueAsInt());
74 Profile(ID, getKindAsString(), getValueAsString());
76 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind,
81 static void Profile(FoldingSetNodeID &ID, StringRef Kind, StringRef Values) {
180 void Profile(FoldingSetNodeID &ID) const {
181 Profile(ID, makeArrayRef(begin(), end()));
183 static void Profile(FoldingSetNodeID &ID, ArrayRef<Attribute> AttrList) {
185 AttrList[I].Profile(ID)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapUtils.java 38 import android.provider.ContactsContract.Profile;
131 Profile.CONTENT_VCARD_URI, new String[] { Profile._ID }, null,
143 Profile.CONTENT_URI, new String[] { Profile.DISPLAY_NAME}, null,
161 .init(Profile.CONTENT_URI, null, null, null, null, Uri
162 .withAppendedPath(Profile.CONTENT_URI,
168 "Unable to create profile vcard. Error initializing composer: "
172 Log.e(TAG, "Unable to create profile vcard.", t);
192 .openAssetFileDescriptor(Profile.CONTENT_VCARD_URI, "r")
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
ContactsProviderTest.java 66 * Verifies that query(ContactsContract.Profile.CONTENT_URI) requires
74 getContext().getContentResolver().query(ContactsContract.Profile.CONTENT_URI,
76 fail("query(ContactsContract.Profile.CONTENT_URI) did not throw SecurityException"
84 * Verifies that insert(ContactsContract.Profile.CONTENT_URI) requires
94 getContext().getContentResolver().insert(ContactsContract.Profile.CONTENT_URI,
96 fail("insert(ContactsContract.Profile.CONTENT_URI) did not throw SecurityException "
104 * Verifies that update(ContactsContract.Profile.CONTENT_URI) requires
112 getContext().getContentResolver().update(ContactsContract.Profile.CONTENT_URI,
114 fail("update(ContactsContract.Profile.CONTENT_URI) did not throw SecurityException"
  /cts/tests/tests/permission2/src/android/permission2/cts/
ContactsProviderTest.java 57 * Verifies that query(ContactsContract.Profile.CONTENT_URI) only requires
62 getContext().getContentResolver().query(ContactsContract.Profile.CONTENT_URI,
67 * Verifies that insert(ContactsContract.Profile.CONTENT_URI) only requires
74 getContext().getContentResolver().insert(ContactsContract.Profile.CONTENT_URI,
77 fail("insert(ContactsContract.Profile.CONTENT_URI) threw SecurityException");
84 * Verifies that update(ContactsContract.Profile.CONTENT_URI) only requires
89 getContext().getContentResolver().update(ContactsContract.Profile.CONTENT_URI,
  /system/connectivity/shill/dbus/
chromeos_profile_dbus_adaptor.h 24 #include "dbus_bindings/org.chromium.flimflam.Profile.h"
30 class Profile;
32 // Subclass of DBusAdaptor for Profile objects
33 // There is a 1:1 mapping between Profile and ChromeosProfileDBusAdaptor
34 // instances. Furthermore, the Profile owns the ChromeosProfileDBusAdaptor
36 // having a bare pointer to its owner profile.
38 // A Profile is a collection of Entry structures (which we will define later).
49 Profile* profile);
77 Profile* profile_
    [all...]
  /external/clang/lib/AST/
TemplateName.cpp 30 void SubstTemplateTemplateParmStorage::Profile(llvm::FoldingSetNodeID &ID) {
31 Profile(ID, Parameter, Replacement);
34 void SubstTemplateTemplateParmStorage::Profile(llvm::FoldingSetNodeID &ID,
41 void SubstTemplateTemplateParmPackStorage::Profile(llvm::FoldingSetNodeID &ID,
43 Profile(ID, Context, Parameter, getArgumentPack());
46 void SubstTemplateTemplateParmPackStorage::Profile(llvm::FoldingSetNodeID &ID,
51 ArgPack.Profile(ID, Context);
  /external/v8/tools/
profile.js 30 * Creates a profile object for processing profiling-related events
35 function Profile() {
49 Profile.prototype.skipThisFunction = function(name) {
60 Profile.Operation = {
72 Profile.CodeState = {
82 * See the Profile.Operation enum for the list of
91 Profile.prototype.handleUnknownCode = function(
103 Profile.prototype.addLibrary = function(
119 Profile.prototype.addStaticCode = function(
136 Profile.prototype.addCode = function
    [all...]
  /external/clang/include/clang/AST/
TemplateName.h 140 void Profile(llvm::FoldingSetNodeID &ID, ASTContext &Context);
142 static void Profile(llvm::FoldingSetNodeID &ID,
319 void Profile(llvm::FoldingSetNodeID &ID) {
355 void Profile(llvm::FoldingSetNodeID &ID);
357 static void Profile(llvm::FoldingSetNodeID &ID,
420 void Profile(llvm::FoldingSetNodeID &ID) {
421 Profile(ID, getQualifier(), hasTemplateKeyword(), getTemplateDecl());
424 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS,
518 void Profile(llvm::FoldingSetNodeID &ID) {
520 Profile(ID, getQualifier(), getIdentifier())
    [all...]

Completed in 1897 milliseconds

1 2 3 4 5 6 7 8 91011>>