HomeSort by relevance Sort by last modified time
    Searched defs:string_id (Results 1 - 11 of 11) sorted by null

  /external/perfetto/src/trace_processor/
fuchsia_provider_view.h 36 StringId string_id; member in struct:perfetto::trace_processor::FuchsiaProviderView::StringTableEntry
string_table.cc 79 StringId string_id = static_cast<StringId>(row_); local
85 sqlite3_result_text(context, storage_->GetString(string_id).c_str(), -1,
string_pool.cc 58 // hash to the string_id.
59 Id string_id = PtrToId(ptr); local
60 string_index_.emplace(hash, string_id);
61 return string_id;
  /art/libdexfile/dex/
dex_file-inl.h 41 inline int32_t DexFile::GetStringLength(const dex::StringId& string_id) const {
42 const uint8_t* ptr = DataBegin() + string_id.string_data_off_;
46 inline const char* DexFile::GetStringDataAndUtf16Length(const dex::StringId& string_id,
49 const uint8_t* ptr = DataBegin() + string_id.string_data_off_;
54 inline const char* DexFile::GetStringData(const dex::StringId& string_id) const {
56 return GetStringDataAndUtf16Length(string_id, &ignored);
65 const dex::StringId& string_id = GetStringId(idx); local
66 return GetStringDataAndUtf16Length(string_id, utf16_length);
dex_file_tracking_registrar.cc 221 const dex::StringId & string_id = dex_file_->GetStringId(StringIndex(stringid_ctr)); local
222 const void* string_data_begin = reinterpret_cast<const void*>(dex_file_->Begin() + string_id.string_data_off_);
224 const void* string_data_data_begin = reinterpret_cast<const void*>(dex_file_->GetStringData(string_id));
dex_file_verifier_test.cc 247 const dex::StringId& string_id = dex_file->GetStringId(name_index); local
248 const char* str = dex_file->GetStringData(string_id);
840 const dex::StringId& string_id = dex_file->GetStringId(name_index); local
    [all...]
dex_file_verifier.cc 3062 const dex::StringId* string_id = local
    [all...]
  /art/runtime/
transaction_test.cc 500 const dex::StringId* string_id = dex_file->FindStringId(kResolvedString); local
501 ASSERT_TRUE(string_id != nullptr);
502 dex::StringIndex string_idx = dex_file->GetIndexForStringId(*string_id);
  /art/runtime/jdwp/
jdwp_handler.cc 275 ObjectId string_id; local
276 JdwpError status = Dbg::CreateString(str, &string_id);
280 expandBufAddObjectId(pReply, string_id);
    [all...]
  /art/runtime/verifier/
verifier_deps.cc 156 const dex::StringIndex string_id = TryGetClassDescriptorStringId( local
160 if (string_id.IsValid()) {
162 DCHECK_EQ(GetClassDescriptorStringId(dex_file, method->GetDeclaringClass()), string_id); local
163 return string_id;
175 const dex::StringIndex string_id = TryGetClassDescriptorStringId( local
179 if (string_id.IsValid()) {
181 DCHECK_EQ(GetClassDescriptorStringId(dex_file, field->GetDeclaringClass()), string_id); local
182 return string_id;
220 const dex::StringId* string_id = dex_file.FindStringId(str.c_str()); local
221 if (string_id != nullptr)
    [all...]
  /art/dexlayout/
dexlayout.cc 530 dex_ir::StringId* string_id = data->GetStringId(); local
532 DumpEscapedString(string_id->Data(), out_file_);
534 DumpXmlAttribute(string_id->Data(), out_file_);
1052 dex_ir::StringId* string_id = header->GetStringIdOrNullPtr(idx); local
1064 dex_ir::StringId* string_id = type_id->GetStringId(); local
    [all...]

Completed in 177 milliseconds