HomeSort by relevance Sort by last modified time
    Searched defs:profile (Results 1 - 25 of 872) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/profile/
index_test.go 15 package profile package
95 p := &Profile{
index.go 15 package profile package
25 // profile sample types.
26 func (p *Profile) SampleIndexByName(sampleIndex string) (int, error) {
58 func sampleTypes(p *Profile) []string {
proto_test.go 15 package profile package
91 var all = &Profile{
135 // Write the profile, parse it, and ensure they're equal.
prune.go 17 package profile package
61 func (p *Profile) Prune(dropRx, keepRx *regexp.Regexp) {
121 func (p *Profile) RemoveUninteresting() error {
151 func (p *Profile) PruneFrom(dropRx *regexp.Regexp) {
filter.go 15 package profile package
21 // FilterSamplesByName filters the samples in a profile and only keeps
24 func (p *Profile) FilterSamplesByName(focus, ignore, hide, show *regexp.Regexp) (fm, im, hm, hnm bool) {
77 // FilterTagsByName filters the tags in a profile and only keeps
79 func (p *Profile) FilterTagsByName(show, hide *regexp.Regexp) (sm, hm bool) {
181 // FilterSamplesByTag removes all samples from the profile, except
184 func (p *Profile) FilterSamplesByTag(focus, ignore TagMatch) (fm, im bool) {
legacy_profile_test.go 15 package profile package
60 // profileString is a legacy encoded profile, represnted by words separated by ":"
97 func checkTestSample(p *Profile, want []uint64) error {
110 // profileOfType creates an empty profile with only sample types set,
112 func profileOfType(sampleTypes []string) *Profile {
113 p := new(Profile)
269 profile := `
278 if _, gotErr := parseThread([]byte(profile)); !strings.Contains(gotErr.Error(), wantErr) {
291 threadcreate profile: total 123
298 goroutine profile: total 12345
    [all...]
prune_test.go 15 package profile package
24 in *Profile
91 var in1 = &Profile{
179 var in2 = &Profile{
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/profile/
index_test.go 15 package profile package
95 p := &Profile{
index.go 15 package profile package
25 // profile sample types.
26 func (p *Profile) SampleIndexByName(sampleIndex string) (int, error) {
58 func sampleTypes(p *Profile) []string {
proto_test.go 15 package profile package
91 var all = &Profile{
135 // Write the profile, parse it, and ensure they're equal.
prune.go 17 package profile package
61 func (p *Profile) Prune(dropRx, keepRx *regexp.Regexp) {
121 func (p *Profile) RemoveUninteresting() error {
151 func (p *Profile) PruneFrom(dropRx *regexp.Regexp) {
  /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
  /prebuilts/go/darwin-x86/src/runtime/pprof/internal/profile/
profile_test.go 5 package profile package
19 t.Fatal("Want a valid profile, got <nil>")
22 t.Errorf("Profile should be empty, got %#v", p)
49 # 0x4a2be0 main.main.func3+0x70 /go/src/internal/pprof/profile/a_binary.go:58
54 # 0x4a2b16 main.main.func2+0xd6 /go/src/internal/pprof/profile/a_binary.go:48
prune.go 7 package profile package
17 func (p *Profile) Prune(dropRx, keepRx *regexp.Regexp) {
81 func (p *Profile) RemoveUninteresting() error {
proto_test.go 1 package profile package
  /prebuilts/go/linux-x86/src/runtime/pprof/internal/profile/
profile_test.go 5 package profile package
19 t.Fatal("Want a valid profile, got <nil>")
22 t.Errorf("Profile should be empty, got %#v", p)
49 # 0x4a2be0 main.main.func3+0x70 /go/src/internal/pprof/profile/a_binary.go:58
54 # 0x4a2b16 main.main.func2+0xd6 /go/src/internal/pprof/profile/a_binary.go:48
prune.go 7 package profile package
17 func (p *Profile) Prune(dropRx, keepRx *regexp.Regexp) {
81 func (p *Profile) RemoveUninteresting() error {
proto_test.go 1 package profile package
  /prebuilts/go/darwin-x86/test/
locklinear.go 81 const profile = false const
84 if profile {
  /prebuilts/go/linux-x86/test/
locklinear.go 81 const profile = false const
84 if profile {
  /system/media/alsa_utils/include/
alsa_device_proxy.h 25 const alsa_device_profile* profile; member in struct:__anon3100
37 int proxy_prepare(alsa_device_proxy * proxy, const alsa_device_profile * profile,
  /packages/apps/Camera2/src/com/android/camera/stats/profiler/
LoggingProfiler.java 31 public Profile create(String name) {
32 LoggingProfile profile = new LoggingProfile(mWriter, name); local
33 profile.start();
34 return profile;
  /external/perf_data_converter/src/
perf_to_profile.cc 31 LOG(FATAL) << "Expected profile vector to have one element.";
33 const auto& profile = profiles[0]->data; local
36 profile.SerializeToOstream(&outFile);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/internal/bytecode/
InvocationProfileTest.java 14 InvocationProfile profile = new InvocationProfile("android/view/View/invalidate()V", false, getClass().getClassLoader()); local
15 assertThat(profile.clazz).isEqualTo(View.class);
16 assertThat(profile.methodName).isEqualTo("invalidate");
17 assertThat(profile.isStatic).isEqualTo(false);
18 assertThat(profile.paramTypes).isEmpty();
23 InvocationProfile profile = new InvocationProfile("android/view/View/invalidate(I[ZLjava/lang/String;)Lwhatever/Foo;", false, getClass().getClassLoader()); local
24 assertThat(profile.clazz).isEqualTo(View.class);
25 assertThat(profile.methodName).isEqualTo("invalidate");
26 assertThat(profile.isStatic).isEqualTo(false);
27 assertThat(profile.paramTypes).containsExactly("int", "boolean[]", "java.lang.String")
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhoneFactory.java 42 SipProfile profile = new SipProfile.Builder(sipUri).build(); local
43 return new SipPhone(context, phoneNotifier, profile);

Completed in 181 milliseconds

1 2 3 4 5 6 7 8 91011>>