Home | History | Annotate | Download | only in native

Lines Matching full:kinds

107     unsigned int kinds)
109 if (kinds & KIND_ALLOCATED_OBJECTS) {
112 if (kinds & KIND_ALLOCATED_BYTES) {
115 if (kinds & KIND_FREED_OBJECTS) {
118 if (kinds & KIND_FREED_BYTES) {
121 if (kinds & KIND_GC_INVOCATIONS) {
124 if (kinds & KIND_CLASS_INIT_COUNT) {
127 if (kinds & KIND_CLASS_INIT_TIME) {
214 * public static void resetAllocCount(int kinds)
219 unsigned int kinds = args[0];
220 clearAllocProfStateFields(&gDvm.allocProf, kinds & 0xffff);
221 clearAllocProfStateFields(&dvmThreadSelf()->allocProf, kinds >> 16);