Lines Matching defs:out
48 std::ofstream file(fname, std::ios::binary | std::ios::out | std::ios::trunc);
53 static bool ReadIntoBuffer(const std::string& fname, /*out*/std::vector<unsigned char>* data) {
68 /*out*/std::vector<unsigned char>* dex) {
71 // Clear out file so even if something suppresses the exit value we will still detect dexter
354 /*out*/void** out_address) {
617 std::vector<unsigned char> out;
629 } else if (DoExtractClassFromData(data, name_str, class_data_len, class_data, /*out*/ &out)) {
632 CHECK_EQ(JVMTI_ERROR_NONE, jvmti->Allocate(out.size(), &new_data));
633 memcpy(new_data, out.data(), out.size());
634 *new_class_data_len = static_cast<jint>(out.size());