Home
last modified time | relevance | path

Searched refs:hprofAddU4ToRecord (Results 1 – 8 of 8) sorted by relevance

/dalvik/vm/hprof/
DHprofHeap.c172 hprofAddU4ToRecord(rec, ctx->gcThreadSerialNumber); in hprofMarkRootObject()
173 hprofAddU4ToRecord(rec, (u4)-1); in hprofMarkRootObject()
183 hprofAddU4ToRecord(rec, ctx->gcThreadSerialNumber); in hprofMarkRootObject()
193 hprofAddU4ToRecord(rec, ctx->gcThreadSerialNumber); in hprofMarkRootObject()
194 hprofAddU4ToRecord(rec, (u4)-1); //xxx in hprofMarkRootObject()
250 hprofAddU4ToRecord(rec, (u4)desiredHeap); // u4: heap id in hprofDumpHeapObject()
278 hprofAddU4ToRecord(rec, stackTraceSerialNumber(obj)); in hprofDumpHeapObject()
288 hprofAddU4ToRecord(rec, stackTraceSerialNumber(obj)); in hprofDumpHeapObject()
295 hprofAddU4ToRecord(rec, 0); // zero instance size in hprofDumpHeapObject()
312 hprofAddU4ToRecord(rec, stackTraceSerialNumber(thisClass)); in hprofDumpHeapObject()
[all …]
DHprof.c148 hprofAddU4ToRecord(&ctx->curRec, HPROF_NULL_STACK_TRACE); in hprofShutdown()
149 hprofAddU4ToRecord(&ctx->curRec, HPROF_NULL_THREAD); in hprofShutdown()
150 hprofAddU4ToRecord(&ctx->curRec, 0); // no frames in hprofShutdown()
DHprofStack.c185 hprofAddU4ToRecord(rec, stackTraceEntry->trace.serialNumber); in hprofDumpStacks()
186 hprofAddU4ToRecord(rec, stackTraceEntry->trace.threadSerialNumber); in hprofDumpStacks()
193 hprofAddU4ToRecord(rec, count); in hprofDumpStacks()
195 hprofAddU4ToRecord(rec, stackTraceEntry->trace.frameIds[i]); in hprofDumpStacks()
DHprofClass.c211 hprofAddU4ToRecord(rec, clazz->serialNumber); in hprofDumpClasses()
213 hprofAddU4ToRecord(rec, HPROF_NULL_STACK_TRACE); in hprofDumpClasses()
DHprof.h197 int hprofAddU4ToRecord(hprof_record_t *rec, u4 value);
205 #define hprofAddIdToRecord(rec, id) hprofAddU4ToRecord((rec), (u4)(id))
DHprofStackFrame.c234 hprofAddU4ToRecord(rec, (u4) clazz->serialNumber); in hprofDumpStackFrames()
235 hprofAddU4ToRecord(rec, (u4) lineNum); in hprofDumpStackFrames()
DHprofString.c108 err = hprofAddU4ToRecord(rec, (u4)str); in hprofDumpStrings()
DHprofOutput.c284 hprofAddU4ToRecord(hprof_record_t *rec, u4 value) in hprofAddU4ToRecord() function