Lines Matching defs:size
309 const int size = sym_ctx->GetStackTrace(frames, arraysize(frames));
310 for (int i = 1; i < size; i += 1) {
379 [](struct dl_phdr_info* info, size_t size, void* data) {
396 // Retry until we reach too large a size (1Mb).
401 rc = loadquery(L_GETINFO, buffer.data, buffer.size);
403 buffer = MallocedBuffer<char>(buffer.size + kBufferGrowStep);
404 } while (buffer.size < 1024 * 1024);
444 // First call to get the size of module array needed
459 DWORD size = WideCharToMultiByte(
461 char* str = new char[size];
463 CP_UTF8, 0, module_name, -1, str, size, nullptr, nullptr);
479 fwrite(str.data(), str.size(), 1, file);
497 // Get required wide buffer size
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);