• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/bfd/

Lines Matching refs:nlm_variable_header

82   amt = sizeof (nlm_variable_header (abfd)->descriptionLength);
83 if (bfd_bread ((void *) &nlm_variable_header (abfd)->descriptionLength,
86 amt = nlm_variable_header (abfd)->descriptionLength + 1;
87 if (bfd_bread ((void *) nlm_variable_header (abfd)->descriptionText,
95 nlm_variable_header (abfd)->stackSize = get_word (abfd, (bfd_byte *) temp);
101 nlm_variable_header (abfd)->reserved = get_word (abfd, (bfd_byte *) temp);
104 amt = sizeof (nlm_variable_header (abfd)->oldThreadName);
105 if (bfd_bread ((void *) nlm_variable_header (abfd)->oldThreadName,
110 amt = sizeof (nlm_variable_header (abfd)->screenNameLength);
111 if (bfd_bread ((void *) & nlm_variable_header (abfd)->screenNameLength,
114 amt = nlm_variable_header (abfd)->screenNameLength + 1;
115 if (bfd_bread ((void *) nlm_variable_header (abfd)->screenName,
120 amt = sizeof (nlm_variable_header (abfd)->threadNameLength);
121 if (bfd_bread ((void *) & nlm_variable_header (abfd)->threadNameLength,
124 amt = nlm_variable_header (abfd)->threadNameLength + 1;
125 if (bfd_bread ((void *) nlm_variable_header (abfd)->threadName,
574 amt = sizeof (nlm_variable_header (abfd)->descriptionLength);
575 if (bfd_bwrite (& nlm_variable_header (abfd)->descriptionLength, amt,
578 amt = nlm_variable_header (abfd)->descriptionLength + 1;
579 if (bfd_bwrite ((void *) nlm_variable_header (abfd)->descriptionText, amt,
584 put_word (abfd, (bfd_vma) nlm_variable_header (abfd)->stackSize, temp);
590 put_word (abfd, (bfd_vma) nlm_variable_header (abfd)->reserved, temp);
596 amt = sizeof (nlm_variable_header (abfd)->oldThreadName);
597 if (bfd_bwrite (nlm_variable_header (abfd)->oldThreadName, amt,
602 amt = sizeof (nlm_variable_header (abfd)->screenNameLength);
603 if (bfd_bwrite (& nlm_variable_header (abfd)->screenNameLength, amt,
606 amt = nlm_variable_header (abfd)->screenNameLength + 1;
607 if (bfd_bwrite (nlm_variable_header (abfd)->screenName, amt, abfd) != amt)
611 amt = sizeof (nlm_variable_header (abfd)->threadNameLength);
612 if (bfd_bwrite (& nlm_variable_header (abfd)->threadNameLength, amt,
615 amt = nlm_variable_header (abfd)->threadNameLength + 1;
616 if (bfd_bwrite (nlm_variable_header (abfd)->threadName, amt, abfd) != amt)
1339 sofar += (sizeof (nlm_variable_header (abfd)->descriptionLength)
1340 + nlm_variable_header (abfd)->descriptionLength + 1
1343 + sizeof (nlm_variable_header (abfd)->oldThreadName)
1344 + sizeof (nlm_variable_header (abfd)->screenNameLength)
1345 + nlm_variable_header (abfd)->screenNameLength + 1
1346 + sizeof (nlm_variable_header (abfd)->threadNameLength)
1347 + nlm_variable_header (abfd)->threadNameLength + 1);