Home
last modified time | relevance | path

Searched refs:ProfilerEntry (Results 1 – 4 of 4) sorted by relevance

/external/grpc-grpc/src/csharp/Grpc.Core/Profiling/
DProfilers.cs65 ProfilerEntry[] entries;
74 this.entries = new ProfilerEntry[capacity]; in BasicProfiler()
79 AddEntry(new ProfilerEntry(Timespec.PreciseNow, ProfilerEntry.Type.BEGIN, tag)); in Begin()
84 AddEntry(new ProfilerEntry(Timespec.PreciseNow, ProfilerEntry.Type.END, tag)); in End()
89 AddEntry(new ProfilerEntry(Timespec.PreciseNow, ProfilerEntry.Type.MARK, tag)); in Mark()
115 void AddEntry(ProfilerEntry entry) { in AddEntry()
DProfilerEntry.cs26 internal struct ProfilerEntry struct
35 public ProfilerEntry(Timespec timespec, Type type, string tag) in ProfilerEntry() method
/external/python/cpython2/Modules/
D_lsprof.c96 } ProfilerEntry; typedef
102 ProfilerEntry *ctxEntry;
226 static ProfilerEntry*
229 ProfilerEntry *self; in newProfilerEntry()
230 self = (ProfilerEntry*) malloc(sizeof(ProfilerEntry)); in newProfilerEntry()
254 static ProfilerEntry*
257 return (ProfilerEntry*) RotatingTree_Get(&pObj->profilerEntries, key); in getEntry()
261 getSubEntry(ProfilerObject *pObj, ProfilerEntry *caller, ProfilerEntry* entry) in getSubEntry()
268 newSubEntry(ProfilerObject *pObj, ProfilerEntry *caller, ProfilerEntry* entry) in newSubEntry()
295 ProfilerEntry *entry = (ProfilerEntry*) header; in freeEntry()
[all …]
/external/python/cpython3/Modules/
D_lsprof.c29 } ProfilerEntry; typedef
35 ProfilerEntry *ctxEntry;
173 static ProfilerEntry*
176 ProfilerEntry *self; in newProfilerEntry()
177 self = (ProfilerEntry*) PyMem_Malloc(sizeof(ProfilerEntry)); in newProfilerEntry()
201 static ProfilerEntry*
204 return (ProfilerEntry*) RotatingTree_Get(&pObj->profilerEntries, key); in getEntry()
208 getSubEntry(ProfilerObject *pObj, ProfilerEntry *caller, ProfilerEntry* entry) in getSubEntry()
215 newSubEntry(ProfilerObject *pObj, ProfilerEntry *caller, ProfilerEntry* entry) in newSubEntry()
242 ProfilerEntry *entry = (ProfilerEntry*) header; in freeEntry()
[all …]