HomeSort by relevance Sort by last modified time
    Searched full:note_size (Results 1 - 8 of 8) sorted by null

  /external/oprofile/libop/
op_config_24.h 47 #define OP_PRE_NOTE_WATERMARK(note_size) \
48 (((note_size) / 32) < OP_MIN_NOTE_PRE_WATERMARK \
50 : (note_size) / 32)
  /external/oprofile/gui/
oprof_start_config.cpp 77 } else if (str == "NOTE_SIZE") {
  /external/oprofile/module/
oprofile.c 166 if (likely(note_pos < (sysctl.note_size - OP_PRE_NOTE_WATERMARK(sysctl.note_size)) && !is_ready()))
172 if (unlikely(note_pos == sysctl.note_size)) {
180 note_pos = sysctl.note_size - 1;
212 max = sizeof(struct op_note) * sysctl.note_size;
438 notebufsize = sizeof(struct op_note) * sysctl.note_size;
485 if ((err = check_range(sysctl.note_size, OP_MIN_NOTE_TABLE_SIZE, OP_MAX_NOTE_TABLE_SIZE,
486 "sysctl.note_size value %d not in range (%d %d)\n")))
756 { 1, "notesize", &sysctl_parms.note_size, sizeof(int), 0644, NULL, &lproc_dointvec, NULL, },
785 sysctl_parms.note_size = OP_DEFAULT_NOTE_SIZE
    [all...]
oprofile.h 78 int note_size; member in struct:oprof_sysctl
  /external/lldb/source/Plugins/Process/elf-core/
ProcessElfCore.cpp 526 size_t note_start, note_size; local
528 note_size = AlignToNext(note.n_descsz, 4);
531 DataExtractor note_data (segment_data, note_start, note_size);
551 m_auxv = DataExtractor(segment_data, note_start + 4, note_size - 4);
585 offset += note_size;
  /external/libunwind/src/coredump/
_UCD_create.c 70 #define NOTE_SIZE(_hdr) (sizeof (Elf32_Nhdr) + UNW_ALIGN((_hdr)->n_namesz, 4) + (_hdr)->n_descsz)
71 #define NOTE_NEXT(_hdr) STRUCT_MEMBER_P((_hdr), NOTE_SIZE(_hdr))
72 #define NOTE_FITS_IN(_hdr, _size) ((_size) >= sizeof (Elf32_Nhdr) && (_size) >= NOTE_SIZE (_hdr))
  /external/oprofile/utils/
opcontrol 327 NOTE_SIZE=0
434 echo "NOTE_SIZE=$NOTE_SIZE" >> $SETUP_FILE
867 NOTE_SIZE=$val
1331 if test $NOTE_SIZE != 0; then
1332 set_param notesize $NOTE_SIZE
    [all...]
  /external/valgrind/main/coregrind/m_coredump/
coredump-elf.c 145 static UInt note_size(const struct note *n) function
178 VG_(write)(fd, &n->note, note_size(n));
630 notesz += note_size(note);

Completed in 134 milliseconds