Lines Matching refs:data
352 handle->data, sym_ctx->LookupSymbol(handle->data).Display().c_str());
354 // We are also interested in the first field of what `handle->data`
358 // `handle->data` might be any value, including `nullptr`, or something
361 if (sym_ctx->IsMapped(handle->data))
362 first_field = *reinterpret_cast<void**>(handle->data);
379 [](struct dl_phdr_info* info, size_t size, void* data) {
380 auto list = static_cast<std::vector<std::string>*>(data);
401 rc = loadquery(L_GETINFO, buffer.data, buffer.size);
407 char* buf = buffer.data;
449 if (EnumProcessModules(process_handle, modules.data, size_1, &size_2)) {
456 modules.data[i],
479 fwrite(str.data(), str.size(), 1, file);
498 int n = MultiByteToWideChar(CP_UTF8, 0, str.data(), str.size(), nullptr, 0);
501 MultiByteToWideChar(CP_UTF8, 0, str.data(), str.size(), wbuf.data(), n);
503 WriteConsoleW(handle, wbuf.data(), n, nullptr, nullptr);
507 __android_log_print(ANDROID_LOG_ERROR, "nodejs", "%s", str.data());