• Home
  • Raw
  • Download

Lines Matching refs:v

378                                              unsigned char** v,
382 const unsigned char* v,
386 const char* v,
390 const jvmtiAddrLocationMap* v,
394 jvalue v,
398 jobject v,
424 const jvmtiAddrLocationMap* v, in PrintRest() argument
426 if (v != nullptr) { in PrintRest()
428 << v->start_address << ", location: " << v->location << "]"; in PrintRest()
436 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, jint* v, Args... args) { in PrintRest() argument
437 stream << ", jint*[" << static_cast<const void*>(v) << "]"; in PrintRest()
442 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, const void* v, Args... args) { in PrintRest() argument
443 stream << ", const void*[" << v << "]"; in PrintRest()
448 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, unsigned char** v, Args... args) { in PrintRest() argument
449 stream << ", unsigned char**[" << static_cast<const void*>(v) << "]"; in PrintRest()
454 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, const unsigned char* v, Args... args) { in PrintRest() argument
455 stream << ", const unsigned char*[" << static_cast<const void*>(v) << "]"; in PrintRest()
460 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, const char* v, Args... args) { in PrintRest() argument
461 stream << ", const char*[" << v << "]"; in PrintRest()
466 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, jvalue v, Args... args) { in PrintRest() argument
468 hex << std::hex << v.j; in PrintRest()
470 if (std::isprint(v.c) && v.c < std::numeric_limits<unsigned char>::max()) { in PrintRest()
471 char_val << "'" << static_cast<unsigned char>(v.c) << "'"; in PrintRest()
473 char_val << "0x" << std::hex << reinterpret_cast<uint16_t>(v.c); in PrintRest()
476 << ", .z=" << (v.z ? "true" : "false") in PrintRest()
477 << ", .b=" << static_cast<int32_t>(v.b) in PrintRest()
479 << ", .s=" << static_cast<int32_t>(v.s) in PrintRest()
480 << ", .i=" << v.i in PrintRest()
481 << ", .j=" << v.j in PrintRest()
482 << ", .f=" << v.f in PrintRest()
483 << ", .d=" << v.d in PrintRest()
484 << ", .l=" << v.l << "}]"; in PrintRest()
489 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, void** v, Args... args) { in PrintRest() argument
490 stream << ", void**[" << v << "]"; in PrintRest()
495 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, void* v, Args... args) { in PrintRest() argument
496 stream << ", void*[" << v << "]"; in PrintRest()