Lines Matching refs:pnstate

3668 	parse_note_t	pnstate;  in note_entry()  local
3670 pnstate.pns_file = file; in note_entry()
3671 pnstate.pns_cache = cache; in note_entry()
3672 pnstate.pns_size = size; in note_entry()
3673 pnstate.pns_data = data; in note_entry()
3679 while (pnstate.pns_size > 0) { in note_entry()
3681 if (parse_note_entry(&pnstate) == 0) in note_entry()
3689 (pnstate.pn_namesz == (MSG_STR_CORE_SIZE + 1)) && in note_entry()
3690 (strncmp(MSG_ORIG(MSG_STR_CORE), pnstate.pn_name, in note_entry()
3697 EC_WORD(pnstate.pn_namesz)); in note_entry()
3699 EC_WORD(pnstate.pn_descsz)); in note_entry()
3703 conv_cnote_type(pnstate.pn_type, 0, &inv_buf)); in note_entry()
3706 EC_WORD(pnstate.pn_type)); in note_entry()
3707 if (pnstate.pn_namesz) { in note_entry()
3722 conv_str_to_c_literal(pnstate.pn_name, in note_entry()
3723 pnstate.pn_namesz, c_literal_cb, NULL); in note_entry()
3727 if (pnstate.pn_descsz) { in note_entry()
3740 do_swap, pnstate.pn_type, pnstate.pn_desc, in note_entry()
3741 pnstate.pn_descsz); in note_entry()
3767 EC_WORD(pnstate.pn_type)); in note_entry()
3779 dump_hex_bytes(pnstate.pn_desc, in note_entry()
3780 pnstate.pn_descsz, 8, 4, 4); in note_entry()
3852 parse_note_t pnstate; in has_linux_abi_note() local
3865 pnstate.pns_file = file; in has_linux_abi_note()
3866 pnstate.pns_cache = _cache; in has_linux_abi_note()
3867 pnstate.pns_size = _cache->c_data->d_size; in has_linux_abi_note()
3868 pnstate.pns_data = (Word *)_cache->c_data->d_buf; in has_linux_abi_note()
3870 while (pnstate.pns_size > 0) { in has_linux_abi_note()
3873 if (parse_note_entry(&pnstate) == 0) in has_linux_abi_note()
3880 if ((pnstate.pn_type != 1) || in has_linux_abi_note()
3881 (pnstate.pn_namesz != (MSG_STR_GNU_SIZE + 1)) || in has_linux_abi_note()
3882 (strncmp(MSG_ORIG(MSG_STR_GNU), pnstate.pn_name, in has_linux_abi_note()
3884 (pnstate.pn_descsz < 16)) in has_linux_abi_note()
3894 w = (Word *) pnstate.pn_desc; in has_linux_abi_note()