OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DexFileMethodInliner
(Results
1 - 6
of
6
) sorted by null
/art/compiler/dex/quick/
dex_file_to_method_inliner_map.h
33
* Map each DexFile to its
DexFileMethodInliner
.
43
DexFileMethodInliner
* GetMethodInliner(const DexFile* dex_file) NO_THREAD_SAFETY_ANALYSIS;
49
std::map<const DexFile*,
DexFileMethodInliner
*> inliners_ GUARDED_BY(lock_);
dex_file_to_method_inliner_map.cc
40
DexFileMethodInliner
* DexFileToMethodInlinerMap::GetMethodInliner(const DexFile* dex_file) {
56
DexFileMethodInliner
* locked_inliner;
59
DexFileMethodInliner
** inliner = &inliners_[dex_file]; // inserts new entry if not found
63
*inliner = new
DexFileMethodInliner
;
dex_file_method_inliner.cc
129
const uint32_t
DexFileMethodInliner
::kIndexUnresolved;
130
const char* const
DexFileMethodInliner
::kClassCacheNames[] = {
157
const char* const
DexFileMethodInliner
::kNameCacheNames[] = {
208
const
DexFileMethodInliner
::ProtoDef
DexFileMethodInliner
::kProtoCacheDefs[] = {
288
const
DexFileMethodInliner
::IntrinsicDef
DexFileMethodInliner
::kIntrinsicMethods[] = {
393
DexFileMethodInliner
::
DexFileMethodInliner
()
394
: lock_("
DexFileMethodInliner
lock", kDexFileMethodInlinerLock)
[
all
...]
dex_file_method_inliner.h
52
class
DexFileMethodInliner
{
54
DexFileMethodInliner
();
55
~
DexFileMethodInliner
();
329
DISALLOW_COPY_AND_ASSIGN(
DexFileMethodInliner
);
mir_to_lir.h
148
class
DexFileMethodInliner
;
[
all
...]
/art/compiler/dex/quick/x86/
utility_x86.cc
[
all
...]
Completed in 177 milliseconds