Home | History | Annotate | Download | only in native

Lines Matching defs:kinds

162     unsigned int kinds)
164 if (kinds & KIND_ALLOCATED_OBJECTS) {
167 if (kinds & KIND_ALLOCATED_BYTES) {
170 if (kinds & KIND_FREED_OBJECTS) {
173 if (kinds & KIND_FREED_BYTES) {
176 if (kinds & KIND_GC_INVOCATIONS) {
179 if (kinds & KIND_CLASS_INIT_COUNT) {
182 if (kinds & KIND_CLASS_INIT_TIME) {
186 if (kinds & KIND_EXT_ALLOCATED_OBJECTS) {
189 if (kinds & KIND_EXT_ALLOCATED_BYTES) {
192 if (kinds & KIND_EXT_FREED_OBJECTS) {
195 if (kinds & KIND_EXT_FREED_BYTES) {
300 * public static void resetAllocCount(int kinds)
306 unsigned int kinds = args[0];
307 clearAllocProfStateFields(&gDvm.allocProf, kinds & 0xffff);
308 clearAllocProfStateFields(&dvmThreadSelf()->allocProf, kinds >> 16);