Lines Matching refs:pnstate

3771 	parse_note_t	pnstate;  in note_entry()  local
3773 pnstate.pns_file = file; in note_entry()
3774 pnstate.pns_cache = cache; in note_entry()
3775 pnstate.pns_size = size; in note_entry()
3776 pnstate.pns_data = data; in note_entry()
3782 while (pnstate.pns_size > 0) { in note_entry()
3784 if (parse_note_entry(&pnstate) == 0) in note_entry()
3792 (pnstate.pn_namesz == (MSG_STR_CORE_SIZE + 1)) && in note_entry()
3793 (strncmp(MSG_ORIG(MSG_STR_CORE), pnstate.pn_name, in note_entry()
3800 EC_WORD(pnstate.pn_namesz)); in note_entry()
3802 EC_WORD(pnstate.pn_descsz)); in note_entry()
3806 conv_cnote_type(pnstate.pn_type, 0, &inv_buf)); in note_entry()
3809 EC_WORD(pnstate.pn_type)); in note_entry()
3810 if (pnstate.pn_namesz) { in note_entry()
3825 conv_str_to_c_literal(pnstate.pn_name, in note_entry()
3826 pnstate.pn_namesz, c_literal_cb, NULL); in note_entry()
3830 if (pnstate.pn_descsz) { in note_entry()
3843 do_swap, pnstate.pn_type, pnstate.pn_desc, in note_entry()
3844 pnstate.pn_descsz); in note_entry()
3870 EC_WORD(pnstate.pn_type)); in note_entry()
3882 dump_hex_bytes(pnstate.pn_desc, in note_entry()
3883 pnstate.pn_descsz, 8, 4, 4); in note_entry()
3955 parse_note_t pnstate; in has_linux_abi_note() local
3970 pnstate.pns_file = file; in has_linux_abi_note()
3971 pnstate.pns_cache = _cache; in has_linux_abi_note()
3972 pnstate.pns_size = _cache->c_data->d_size; in has_linux_abi_note()
3973 pnstate.pns_data = (Word *)_cache->c_data->d_buf; in has_linux_abi_note()
3975 while (pnstate.pns_size > 0) { in has_linux_abi_note()
3978 if (parse_note_entry(&pnstate) == 0) in has_linux_abi_note()
3985 if ((pnstate.pn_type != 1) || in has_linux_abi_note()
3986 (pnstate.pn_namesz != (MSG_STR_GNU_SIZE + 1)) || in has_linux_abi_note()
3987 (strncmp(MSG_ORIG(MSG_STR_GNU), pnstate.pn_name, in has_linux_abi_note()
3989 (pnstate.pn_descsz < 16)) in has_linux_abi_note()
3999 w = (Word *) pnstate.pn_desc; in has_linux_abi_note()