HomeSort by relevance Sort by last modified time
    Searched refs:RootType (Results 1 - 25 of 33) sorted by null

1 2

  /dalvik/hit/src/com/android/hit/
RootObj.java 22 RootType mType = RootType.UNKNOWN;
33 public RootObj(RootType type) {
37 public RootObj(RootType type, long id) {
41 public RootObj(RootType type, long id, int thread, StackTrace stack) {
51 if (mType == RootType.SYSTEM_CLASS) {
70 if (mType == RootType.SYSTEM_CLASS) {
RootType.java 19 public enum RootType {
41 RootType(int type, String name) {
HprofParser.java 246 length -= loadBasicObj(RootType.UNKNOWN);
250 length -= loadBasicObj(RootType.NATIVE_STATIC);
268 length -= loadBasicObj(RootType.SYSTEM_CLASS);
276 length -= loadBasicObj(RootType.BUSY_MONITOR);
316 length -= loadBasicObj(RootType.INTERNED_STRING);
320 length -= loadBasicObj(RootType.FINALIZING);
324 length -= loadBasicObj(RootType.DEBUGGER);
328 length -= loadBasicObj(RootType.REFERENCE_CLEANUP);
332 length -= loadBasicObj(RootType.VM_INTERNAL);
340 length -= loadBasicObj(RootType.UNREACHABLE)
    [all...]
ClassObj.java 74 RootObj root = new RootObj(RootType.JAVA_STATIC, id);
  /art/runtime/
object_callbacks.h 38 enum RootType {
53 std::ostream& operator<<(std::ostream& os, const RootType& root_type);
58 RootType root_type);
65 const StackVisitor* visitor, RootType root_type);
gc_root.h 33 void VisitRoot(RootCallback* callback, void* arg, uint32_t thread_id, RootType root_type) {
reference_table.h 52 void VisitRoots(RootCallback* visitor, void* arg, uint32_t tid, RootType root_type);
indirect_reference_table.h 316 void VisitRoots(RootCallback* callback, void* arg, uint32_t tid, RootType root_type)
indirect_reference_table.cc 264 RootType root_type) {
reference_table.cc 246 RootType root_type) {
debugger.h 89 void VisitRoots(RootCallback* callback, void* arg, uint32_t tid, RootType root_type)
124 void VisitRoots(RootCallback* callback, void* arg, uint32_t tid, RootType root_type)
  /external/eigen/unsupported/Eigen/src/Polynomials/
PolynomialSolver.h 36 typedef std::complex<RealScalar> RootType;
37 typedef Matrix<RootType,_Deg,1> RootsType;
83 inline const RootType& selectComplexRoot_withRespectToNorm( squaredNormBinaryPredicate& pred ) const
100 inline const RootType& greatestRoot() const
109 inline const RootType& smallestRoot() const
296 typedef typename BASE::RootType RootType; \
  /art/runtime/gc/collector/
mark_sweep.h 186 RootType root_type)
191 RootType /*root_type*/)
200 RootType root_type)
251 const StackVisitor *visitor, RootType root_type);
254 RootType root_type) NO_THREAD_SAFETY_ANALYSIS;
mark_compact.h 117 RootType /*root_type*/)
184 RootType /*root_type*/)
semi_space.h 136 RootType /*root_type*/)
mark_sweep.cc 460 RootType /*root_type*/) {
465 RootType /*root_type*/) {
470 RootType /*root_type*/) {
475 const StackVisitor* visitor, RootType root_type) {
480 RootType root_type) {
    [all...]
mark_compact.cc 313 RootType /*root_type*/) {
318 RootType /*root_type*/) {
semi_space.cc 594 RootType /*root_type*/) {
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/background/js/
volume_manager.js 47 this.fakeEntries_[VolumeManagerCommon.RootType.DRIVE_OFFLINE] = {
49 rootType: VolumeManagerCommon.RootType.DRIVE_OFFLINE,
52 this.fakeEntries_[VolumeManagerCommon.RootType.DRIVE_SHARED_WITH_ME] = {
54 rootType: VolumeManagerCommon.RootType.DRIVE_SHARED_WITH_ME,
57 this.fakeEntries_[VolumeManagerCommon.RootType.DRIVE_RECENT] = {
59 rootType: VolumeManagerCommon.RootType.DRIVE_RECENT,
712 entry.rootType,
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/common/js/
util.js     [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
directory_model.js 86 * @return {?VolumeManagerCommon.RootType} Root type of current root, or null if
98 return locationInfo.rootType;
543 var rootType = this.getCurrentRootType();
544 if ((rootType === VolumeManagerCommon.RootType.DRIVE ||
545 rootType === VolumeManagerCommon.RootType.DRIVE_SHARED_WITH_ME ||
546 rootType === VolumeManagerCommon.RootType.DRIVE_RECENT ||
547 rootType === VolumeManagerCommon.RootType.DRIVE_OFFLINE) &
    [all...]
file_manager_commands.js 367 var rootType =
368 locationInfo && locationInfo.isRootEntry && locationInfo.rootType;
370 event.canExecute = (rootType == VolumeManagerCommon.RootType.ARCHIVE ||
371 rootType == VolumeManagerCommon.RootType.REMOVABLE ||
372 rootType == VolumeManagerCommon.RootType.PROVIDED);
375 switch (rootType) {
376 case VolumeManagerCommon.RootType.ARCHIVE
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/ui/
breadcrumbs_controller.js 64 entryLocationInfo.rootType ===
65 VolumeManagerCommon.RootType.DRIVE_OTHER) {
72 VolumeManagerCommon.RootType.DRIVE_SHARED_WITH_ME];
  /art/runtime/hprof/
hprof.cc 499 static void RootVisitor(mirror::Object** obj, void* arg, uint32_t thread_id, RootType root_type)
514 void VisitRoot(const mirror::Object* obj, uint32_t thread_id, RootType type)
1059 void Hprof::VisitRoot(const mirror::Object* obj, uint32_t thread_id, RootType type) {
    [all...]
  /art/runtime/native/
dalvik_system_VMRuntime.cc 219 uint32_t /*thread_id*/, RootType /*root_type*/)

Completed in 230 milliseconds

1 2