/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
vdso_support.cc | 112 SymbolInfo info; local 113 if (vdso.LookupSymbol("__vdso_getcpu", "LINUX_2.6", STT_FUNC, &info)) { 116 fn = (GetCpuFn)(info.address); 139 SymbolInfo *info) const { 140 return image_.LookupSymbol(name, version, type, info);
|
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
vdso_support.cc | 112 SymbolInfo info; local 113 if (vdso.LookupSymbol("__vdso_getcpu", "LINUX_2.6", STT_FUNC, &info)) { 116 fn = (GetCpuFn)(info.address); 139 SymbolInfo *info) const { 140 return image_.LookupSymbol(name, version, type, info);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/ |
coff-objfmt.h | 47 unsigned int info; /* Operation info */ member in struct:coff_unwind_code 72 void yasm_win64__uwinfo_destroy(coff_unwind_info *info); 74 /*@only@*/ coff_unwind_info *info,
|
/external/chromium_org/tools/traceline/traceline/ |
sym_resolver.h | 63 // collect all of the base addresses and query for more info. 74 IMAGEHLP_MODULE64 info; local 75 info.SizeOfStruct = sizeof(info); 76 if (SymGetModuleInfo64(proc_, bases[i], &info) != TRUE) { 79 std::string filename(info.ImageName); 94 SYMBOL_INFO info; member in struct:SymResolver::__anon14676 96 } info = {0}; local 98 info.info.SizeOfStruct = sizeof(info.info) 112 SYMBOL_INFO info; member in struct:SymResolver::__anon14677 114 } info = {0}; local [all...] |
/external/chromium_org/ui/gfx/ |
gtk_native_view_id_manager.cc | 70 NativeViewInfo info; local 71 info.widget = widget; 75 info.x_window_id = GDK_WINDOW_XID(gdk_window); 79 id_to_info_[new_id] = info; 135 PermanentXIDInfo info; local 136 info.widget = widget; 137 info.ref_count = 1; 139 perm_xid_to_info_.insert(std::make_pair(*output, info));
|
/external/chromium_org/ui/gl/ |
gl_surface_win.cc | 145 BITMAPV4HEADER info = { sizeof(BITMAPV4HEADER) }; local 146 info.bV4Width = size.width(); 147 info.bV4Height = -size.height(); 148 info.bV4Planes = 1; 149 info.bV4BitCount = 32; 150 info.bV4V4Compression = BI_BITFIELDS; 151 info.bV4RedMask = 0x000000FF; 152 info.bV4GreenMask = 0x0000FF00; 153 info.bV4BlueMask = 0x00FF0000; 154 info.bV4AlphaMask = 0xFF000000 189 BITMAPV4HEADER info = { sizeof(BITMAPV4HEADER) }; local [all...] |
/external/chromium_org/v8/src/platform/ |
socket.cc | 116 struct addrinfo* info = NULL; local 122 int result = ::getaddrinfo(host, port, &hint, &info); 128 for (struct addrinfo* ai = info; ai != NULL; ai = ai->ai_next) { 129 // Try to connect using this addr info. 134 freeaddrinfo(info); 143 freeaddrinfo(info);
|
/external/chromium_org/webkit/browser/database/ |
database_quota_client.cc | 30 OriginInfo info; local 32 webkit_database::GetIdentifierFromOrigin(origin_url), &info)) 33 return info.TotalSize();
|
/external/chromium_org/webkit/browser/fileapi/ |
dump_file_system.cc | 91 SandboxDirectoryDatabase::FileInfo info; local 92 if (!directory_db.GetFileInfo(id, &info)) { 98 dirname + "/" + FilePathToString(base::FilePath(info.name)); 100 if (info.is_directory()) { 104 info.name.c_str(), id)); 113 const char* directory_suffix = info.is_directory() ? "/" : ""; 116 if (info.is_directory()) { 119 base::GetFileSize(origin_dir.Append(info.data_path), &size); 127 FilePathToString(info.data_path).c_str());
|
/external/chromium_org/webkit/browser/quota/ |
mock_quota_manager.cc | 52 StorageInfo& info = usage_and_quota_map_[std::make_pair(origin, type)]; local 53 callback.Run(quota::kQuotaStatusOk, info.usage, info.quota);
|
/external/compiler-rt/lib/asan/ |
asan_win.cc | 117 IMAGEHLP_LINE64 info; local 118 info.SizeOfStruct = sizeof(IMAGEHLP_LINE64); 120 (DWORD64)addr, &unused, &info); 123 // FIXME: it might be useful to print out 'obj' or 'obj+offset' info too. 127 info.FileName, info.LineNumber);
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_stacktrace.cc | 94 AddressInfo &info = addr_frames[j]; local 96 if (info.function) { 97 Printf(" in %s", info.function); 99 if (info.file) { 100 PrintSourceLocation(info.file, info.line, info.column, 102 } else if (info.module) { 103 PrintModuleAndOffset(info.module, info.module_offset [all...] |
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
DomFront.java | 94 DomInfo info = domInfos[i]; local 96 + info.idom); 155 DomInfo info = domInfos[i]; local 157 if (info.idom == -1) continue; 159 SsaBasicBlock domParent = nodes.get(info.idom);
|
/external/e2fsprogs/lib/ss/ |
listen.c | 51 ss_data *info; local 60 current_info = info = ss_info(sci_idx); 62 info->abort = 0; 71 while(!info->abort) { 76 if (info->readline) { 77 line = (*info->readline)(current_info->prompt); 100 if (info->add_history) 101 (*info->add_history)(line); 118 if (info->readline)
|
/external/elfutils/tests/ |
allregs.c | 94 struct reginfo *info; member in struct:state 136 state->info = realloc (state->info, (regno + 1) * sizeof state->info[0]); 137 memset (&state->info[state->nregs], 0, 138 ((void *) &state->info[regno + 1] 139 - (void *) &state->info[state->nregs])); 143 state->info[regno].regno = regno; 144 state->info[regno].set = setname; 145 state->info[regno].pfx = prefix [all...] |
asm-tst3.c | 275 static const int info[4] = local 306 printf ("symbol %zu has wrong other info\n", inner); 317 if (sym->st_info != info[inner])
|
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
InnerClassesAttribute_info.java | 37 final InnerClass_info info = get (i); local 39 if (info.m_inner_class_index == class_index) 41 nestedAccessFlags [0] = info.m_inner_access_flags;
|
/external/freetype/src/sfnt/ |
pngshim.c | 191 png_infop info; local 219 info = png_create_info_struct( png ); 220 if ( !info ) 235 png_read_info( png, info ); 236 png_get_IHDR( png, info, 261 if ( png_get_valid(png, info, PNG_INFO_tRNS ) ) 281 png_read_update_info(png, info ); 282 png_get_IHDR( png, info, 323 png_read_end( png, info ); 326 png_destroy_read_struct( &png, &info, NULL ) [all...] |
/external/grub/stage2/ |
common.c | 249 /* Get the drive info. */ 261 struct drive_info *info = (struct drive_info *) addr; local 280 info->drive_number = drive; 281 info->drive_mode = ((geom.flags & BIOSDISK_FLAG_LBA_EXTENSION) 283 info->drive_cylinders = geom.cylinders; 284 info->drive_heads = geom.heads; 285 info->drive_sectors = geom.sectors; 291 info->size = addr - (unsigned long) info; 292 mbi.drives_length += info->size [all...] |
/external/gtest/test/ |
gtest_stress_test.cc | 91 GTEST_LOG_(INFO) << "Thread #" << id << " running..."; 119 const TestInfo* const info = UnitTest::GetInstance()->current_test_info(); local 120 const TestResult* const result = info->result(); 145 const TestInfo* const info = UnitTest::GetInstance()->current_test_info(); local 146 const TestResult* const result = info->result();
|
/external/harfbuzz_ng/src/ |
hb-buffer-deserialize-json.hh | 462 hb_glyph_info_t info; local 498 memset (&info, 0, sizeof (info)); 505 buffer->add_info (info); 523 &info.codepoint)) 529 { if (!parse_uint (tok, p, &info.codepoint)) return false; } 533 { if (!parse_uint (tok, p, &info.cluster )) return false; } 553 { if (!parse_uint (tok, p, &info.codepoint)) return false; } 556 buffer->add_info (info); 565 { if (!parse_uint (tok, p, &info.cluster )) return false; [all...] |
hb-buffer-deserialize-text.hh | 339 hb_glyph_info_t info; local 383 &info.codepoint)) 389 { if (!parse_uint (tok, p, &info.cluster )) return false; } 406 memset (&info, 0, sizeof (info)); 419 &info.codepoint)) 424 buffer->add_info (info); 433 { if (!parse_uint (tok, p, &info.cluster )) return false; } 436 buffer->add_info (info); 448 buffer->add_info (info); [all...] |
hb-buffer-serialize.cc | 71 hb_glyph_info_t *info = hb_buffer_get_glyph_infos (buffer, NULL); local 93 hb_font_glyph_to_string (font, info[i].codepoint, g, sizeof (g)); 103 p += snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint); 106 p += snprintf (p, ARRAY_LENGTH (b) - (p - b), ",\"cl\":%u", info[i].cluster); 144 hb_glyph_info_t *info = hb_buffer_get_glyph_infos (buffer, NULL); local 160 hb_font_glyph_to_string (font, info[i].codepoint, p, 128); 164 p += snprintf (p, ARRAY_LENGTH (b) - (p - b), "%u", info[i].codepoint); 167 p += snprintf (p, ARRAY_LENGTH (b) - (p - b), "=%u", info[i].cluster);
|
hb-icu-le.cc | 143 chars[i] = buffer->info[i].codepoint; 144 clusters[i] = buffer->info[i].cluster; 183 hb_glyph_info_t *info = buffer->info; local 189 info[j].codepoint = glyphs[i]; 190 info[j].cluster = clusters[indices[i]]; 193 info[j].mask = positions[2 * i + 2] - positions[2 * i]; 194 info[j].var1.u32 = 0; 195 info[j].var2.u32 = -positions[2 * i + 1]; 204 hb_glyph_info_t *info = &buffer->info[i] local [all...] |
hb-ot-shape-complex-indic-machine.hh | 1270 hb_glyph_info_t *info = buffer->info; local [all...] |