Lines Matching refs:that

9  * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
53 static void set_this(JvmtiGetLoadedClassesClosure* that) {
55 thread->set_jvmti_get_loaded_classes_closure(that);
61 JvmtiGetLoadedClassesClosure* that = get_this();
62 assert(that == NULL, "JvmtiGetLoadedClassesClosure in use");
71 JvmtiGetLoadedClassesClosure* that = get_this();
72 assert(that == NULL, "JvmtiGetLoadedClassesClosure in use");
81 JvmtiGetLoadedClassesClosure* that = get_this();
82 assert(that != NULL, "JvmtiGetLoadedClassesClosure not found");
153 // Public methods that get called within the scope of the closure
168 // Finally, the static methods that are the callbacks
170 JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this();
171 if (that->get_initiatingLoader() == NULL) {
173 that->set_count(that->get_count() + 1);
177 that->set_count(that->get_count() + 1);
182 JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this();
183 if (loader == JNIHandles::resolve(that->get_initiatingLoader())) {
185 that->set_count(that->get_count() + 1);
191 JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this();
192 if (loader == JNIHandles::resolve(that->get_initiatingLoader())) {
193 that->set_count(that->get_count() + 1);
198 JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this();
199 if (that->available()) {
200 if (that->get_initiatingLoader() == NULL) {
203 that->set_element(that->get_index(), mirror);
204 that->set_index(that->get_index() + 1);
209 that->set_element(that->get_index(), mirror);
210 that->set_index(that->get_index() + 1);
216 JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this();
217 if (that->available()) {
218 if (loader == JNIHandles::resolve(that->get_initiatingLoader())) {
221 that->set_element(that->get_index(), mirror);
222 that->set_index(that->get_index() + 1);
230 // [[B, [[[B, .. and the count is incremented for each one that exists.
232 JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this();
233 assert(that != NULL, "no JvmtiGetLoadedClassesClosure");
235 that->set_count(that->get_count() + 1);
241 JvmtiGetLoadedClassesClosure* that = JvmtiGetLoadedClassesClosure::get_this();
242 assert(that != NULL, "no JvmtiGetLoadedClassesClosure");
243 assert(that->available(), "no list");
246 that->set_element(that->get_index(), mirror);
247 that->set_index(that->get_index() + 1);
262 // array classes aren't created, and SystemDictionary_lock to ensure that
299 // array classes aren't created, and SystemDictionary_lock to ensure that