HomeSort by relevance Sort by last modified time
    Searched refs:type_flags (Results 1 - 10 of 10) sorted by null

  /external/lldb/examples/darwin/heap_find/
heap.py 239 def type_flags_to_string(type_flags):
240 if type_flags == 0:
242 elif type_flags & 2:
244 elif type_flags & 4:
246 elif type_flags & 1:
248 elif type_flags & 8:
250 elif type_flags & 16:
252 elif type_flags & 32:
254 elif type_flags & 64:
257 type_str = hex(type_flags)
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/
stack_logging.h 52 extern "C" void __disk_stack_logging_log_stack(uint32_t type_flags, uintptr_t zone_ptr, uintptr_t size, uintptr_t ptr_arg, uintptr_t return_val, uint32_t num_hot_to_skip);
58 uint32_t type_flags; member in struct:__anon29189
MachTask.cpp     [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
HashedNameToDIE.h 34 uint32_t type_flags; // Any flags for this DIEInfo member in struct:DWARFMappedHash::DIEInfo
40 type_flags (0),
48 type_flags (f),
58 type_flags = 0;
168 if (die_info_array[i].type_flags & eTypeFlagClassIsImplementation)
202 if ((die_info_array[i].type_flags & type_flag_mask) == type_flag_value)
460 hash_data.type_flags = (uint32_t)form_value.Unsigned ();
502 strm.Printf ("0x%2.2x", hash_data.type_flags);
503 if (hash_data.type_flags)
506 if (hash_data.type_flags & eTypeFlagClassIsImplementation
    [all...]
  /external/lldb/examples/darwin/heap_find/heap/
heap_find.cpp 85 uint32_t type_flags; member in struct:__anon28977
220 uint32_t type_flags; member in struct:malloc_stack_entry
347 m_entries[m_size].type_flags = 0;
838 stack_entry->type_flags = stack_record.type_flags;
874 stack_entry->type_flags = stack_logging_type_alloc;
    [all...]
  /external/lldb/source/Plugins/ABI/SysV-x86_64/
ABISysV_x86_64.cpp 663 const uint32_t type_flags = return_clang_type.GetTypeInfo (); local
    [all...]
  /external/mksh/src/
exec.c 502 int type_flags; local
622 type_flags = 0;
630 type_flags = EXPORT;
632 type_flags = LOCAL|LOCAL_COPY|EXPORT;
636 type_flags |= EXPORT;
657 typeset(cp, type_flags, 0, 0, 0);
658 if (bourne_function_call && !(type_flags & EXPORT))
    [all...]
  /art/compiler/dex/quick/
dex_file_method_inliner.cc 369 #define UNSAFE_GET_PUT(type, code, type_flags) \
371 type_flags & ~kIntrinsicFlagIsObject), \
373 (type_flags | kIntrinsicFlagIsVolatile) & ~kIntrinsicFlagIsObject), \
375 type_flags), \
377 type_flags | kIntrinsicFlagIsVolatile), \
379 type_flags | kIntrinsicFlagIsOrdered)
    [all...]
  /external/lldb/source/Core/
ValueObject.cpp 851 const Flags type_flags (GetTypeInfo (&pointee_or_element_clang_type));
852 bool is_char_arr_ptr (type_flags.AnySet (ClangASTType::eTypeIsArray | ClangASTType::eTypeIsPointer) &&
858 if (type_flags.Test(ClangASTType::eTypeIsArray))
    [all...]
  /external/lldb/source/Symbol/
ClangASTType.cpp 321 Flags type_flags (GetTypeInfo (&pointee_or_element_clang_type));
326 if (type_flags.AnySet (eTypeIsArray | eTypeIsPointer))
330 if (type_flags.Test (eTypeIsArray))
    [all...]

Completed in 303 milliseconds