Searched refs:mods (Results 1 – 4 of 4) sorted by relevance
32 jint mods = 0; in GetJavaField() local33 if (JvmtiErrorToException(env, jvmti, jvmti->GetFieldModifiers(field_klass, f, &mods))) { in GetJavaField()37 bool is_static = (mods & kAccStatic) != 0; in GetJavaField()42 jint mods = 0; in GetJavaMethod() local43 if (JvmtiErrorToException(env, jvmti, jvmti->GetMethodModifiers(m, &mods))) { in GetJavaMethod()47 bool is_static = (mods & kAccStatic) != 0; in GetJavaMethod()
201 const JdwpEventMod* pMod = &pEvent->mods[i]; in RegisterEvent()264 JdwpEventMod& mod = cur_event->mods[i]; in UnregisterLocationEventsOnClass()321 JdwpEventMod* pMod = &pEvent->mods[i]; in UnregisterEvent()406 int allocSize = offsetof(JdwpEvent, mods) + numMods * sizeof(newEvent->mods[0]); in EventAlloc()431 if (pEvent->mods[i].modKind == MK_CLASS_MATCH) { in EventFree()432 free(pEvent->mods[i].classMatch.classPattern); in EventFree()433 pEvent->mods[i].classMatch.classPattern = nullptr; in EventFree()435 if (pEvent->mods[i].modKind == MK_CLASS_EXCLUDE) { in EventFree()436 free(pEvent->mods[i].classExclude.classPattern); in EventFree()437 pEvent->mods[i].classExclude.classPattern = nullptr; in EventFree()[all …]
100 JdwpEventMod mods[1]; /* MUST be last field in struct */ member
1232 JdwpEventMod& mod = pEvent->mods[i]; in ER_Set()