Lines Matching refs:pnstate

3672 	parse_note_t	pnstate;  in note_entry()  local
3674 pnstate.pns_file = file; in note_entry()
3675 pnstate.pns_cache = cache; in note_entry()
3676 pnstate.pns_size = size; in note_entry()
3677 pnstate.pns_data = data; in note_entry()
3683 while (pnstate.pns_size > 0) { in note_entry()
3685 if (parse_note_entry(&pnstate) == 0) in note_entry()
3693 (pnstate.pn_namesz == (MSG_STR_CORE_SIZE + 1)) && in note_entry()
3694 (strncmp(MSG_ORIG(MSG_STR_CORE), pnstate.pn_name, in note_entry()
3701 EC_WORD(pnstate.pn_namesz)); in note_entry()
3703 EC_WORD(pnstate.pn_descsz)); in note_entry()
3707 conv_cnote_type(pnstate.pn_type, 0, &inv_buf)); in note_entry()
3710 EC_WORD(pnstate.pn_type)); in note_entry()
3711 if (pnstate.pn_namesz) { in note_entry()
3726 conv_str_to_c_literal(pnstate.pn_name, in note_entry()
3727 pnstate.pn_namesz, c_literal_cb, NULL); in note_entry()
3731 if (pnstate.pn_descsz) { in note_entry()
3744 do_swap, pnstate.pn_type, pnstate.pn_desc, in note_entry()
3745 pnstate.pn_descsz); in note_entry()
3771 EC_WORD(pnstate.pn_type)); in note_entry()
3783 dump_hex_bytes(pnstate.pn_desc, in note_entry()
3784 pnstate.pn_descsz, 8, 4, 4); in note_entry()
3856 parse_note_t pnstate; in has_linux_abi_note() local
3869 pnstate.pns_file = file; in has_linux_abi_note()
3870 pnstate.pns_cache = _cache; in has_linux_abi_note()
3871 pnstate.pns_size = _cache->c_data->d_size; in has_linux_abi_note()
3872 pnstate.pns_data = (Word *)_cache->c_data->d_buf; in has_linux_abi_note()
3874 while (pnstate.pns_size > 0) { in has_linux_abi_note()
3877 if (parse_note_entry(&pnstate) == 0) in has_linux_abi_note()
3884 if ((pnstate.pn_type != 1) || in has_linux_abi_note()
3885 (pnstate.pn_namesz != (MSG_STR_GNU_SIZE + 1)) || in has_linux_abi_note()
3886 (strncmp(MSG_ORIG(MSG_STR_GNU), pnstate.pn_name, in has_linux_abi_note()
3888 (pnstate.pn_descsz < 16)) in has_linux_abi_note()
3898 w = (Word *) pnstate.pn_desc; in has_linux_abi_note()