Lines Matching refs:v

375                                              unsigned char** v,
379 const unsigned char* v,
383 const char* v,
387 const jvmtiAddrLocationMap* v,
391 jvalue v,
395 jobject v,
421 const jvmtiAddrLocationMap* v, in PrintRest() argument
423 if (v != nullptr) { in PrintRest()
425 << v->start_address << ", location: " << v->location << "]"; in PrintRest()
433 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, jint* v, Args... args) { in PrintRest() argument
434 stream << ", jint*[" << static_cast<const void*>(v) << "]"; in PrintRest()
439 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, const void* v, Args... args) { in PrintRest() argument
440 stream << ", const void*[" << v << "]"; in PrintRest()
445 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, unsigned char** v, Args... args) { in PrintRest() argument
446 stream << ", unsigned char**[" << static_cast<const void*>(v) << "]"; in PrintRest()
451 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, const unsigned char* v, Args... args) { in PrintRest() argument
452 stream << ", const unsigned char*[" << static_cast<const void*>(v) << "]"; in PrintRest()
457 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, const char* v, Args... args) { in PrintRest() argument
458 stream << ", const char*[" << v << "]"; in PrintRest()
463 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, jvalue v, Args... args) { in PrintRest() argument
465 hex << std::hex << v.j; in PrintRest()
467 if (std::isprint(v.c) && v.c < std::numeric_limits<unsigned char>::max()) { in PrintRest()
468 char_val << "'" << static_cast<unsigned char>(v.c) << "'"; in PrintRest()
470 char_val << "0x" << std::hex << reinterpret_cast<uint16_t>(v.c); in PrintRest()
473 << ", .z=" << (v.z ? "true" : "false") in PrintRest()
474 << ", .b=" << static_cast<int32_t>(v.b) in PrintRest()
476 << ", .s=" << static_cast<int32_t>(v.s) in PrintRest()
477 << ", .i=" << v.i in PrintRest()
478 << ", .j=" << v.j in PrintRest()
479 << ", .f=" << v.f in PrintRest()
480 << ", .d=" << v.d in PrintRest()
481 << ", .l=" << v.l << "}]"; in PrintRest()
486 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, void** v, Args... args) { in PrintRest() argument
487 stream << ", void**[" << v << "]"; in PrintRest()
492 void LogPrinter::PrintRest(jvmtiEnv* jvmti, JNIEnv* jni, void* v, Args... args) { in PrintRest() argument
493 stream << ", void*[" << v << "]"; in PrintRest()