Lines Matching refs:entry

267 	// get the symbol table entry size
269 // entry size may differ (cf. DT_SYMENT in the dynamic segment).
438 WARNING("Team note: too short or invalid entry size (%" B_PRIu32 ")\n",
483 // check entry size and area count
486 WARNING("Areas note: too short or invalid entry size (%" B_PRIu32 ")\n",
500 // get entry values
501 Entry entry = {};
502 _ReadEntry(data, dataSize, entry, entrySize);
504 int32 id = Get(entry.na_id);
505 uint64 baseAddress = Get(entry.na_base);
506 uint64 size = Get(entry.na_size);
507 uint64 ramSize = Get(entry.na_ram_size);
508 uint32 lock = Get(entry.na_lock);
509 uint32 protection = Get(entry.na_protection);
563 // check entry size and image count
566 WARNING("Images note: too short or invalid entry size (%" B_PRIu32
580 // get entry values
581 Entry entry = {};
582 _ReadEntry(data, dataSize, entry, entrySize);
584 int32 id = Get(entry.ni_id);
585 int32 type = Get(entry.ni_type);
586 uint64 initRoutine = Get(entry.ni_init_routine);
587 uint64 termRoutine = Get(entry.ni_term_routine);
588 uint64 textBase = Get(entry.ni_text_base);
589 uint64 textSize = Get(entry.ni_text_size);
590 int64 textDelta = Get(entry.ni_text_delta);
591 uint64 dataBase = Get(entry.ni_data_base);
592 uint64 dataSize = Get(entry.ni_data_size);
593 int32 deviceId = Get(entry.ni_device);
594 int64 nodeId = Get(entry.ni_node);
595 uint64 symbolTable = Get(entry.ni_symbol_table);
596 uint64 symbolHash = Get(entry.ni_symbol_hash);
597 uint64 stringTable = Get(entry.ni_string_table);
656 // check entry size and symbol count
660 WARNING("Symbols note: too short or invalid entry size (%" B_PRIu32
714 // check entry size and thread count
719 WARNING("Threads note: too short or invalid entry size (%" B_PRIu32
733 // get entry values
734 Entry entry = {};
735 _ReadEntry(data, dataSize, entry, entrySize);
737 int32 id = Get(entry.nth_id);
738 int32 state = Get(entry.nth_state);
739 int32 priority = Get(entry.nth_priority);
740 uint64 stackBase = Get(entry.nth_stack_base);
741 uint64 stackEnd = Get(entry.nth_stack_end);
832 CoreFile::_ReadEntry(const void*& data, uint32& dataSize, Entry& entry,
835 memcpy(&entry, data, std::min(sizeof(entry), entrySize));