Lines Matching refs:statp

61 	ac_stat_t		*statp;  in ac_mem_stat()  local
100 statp = kmem_zalloc(sizeof (ac_stat_t), KM_SLEEP); in ac_mem_stat()
102 statp->rstate = mem_info->rstate; in ac_mem_stat()
103 statp->ostate = mem_info->ostate; in ac_mem_stat()
104 statp->condition = mem_info->condition; in ac_mem_stat()
105 statp->status_time = mem_info->status_change; in ac_mem_stat()
106 statp->board = ac->board; in ac_mem_stat()
107 statp->real_size = mem_info->real_size; in ac_mem_stat()
108 statp->use_size = mem_info->use_size; in ac_mem_stat()
109 statp->ac_memctl = *(ac->ac_memctl); in ac_mem_stat()
110 statp->ac_decode0 = *(ac->ac_memdecode0); in ac_mem_stat()
111 statp->ac_decode1 = *(ac->ac_memdecode1); in ac_mem_stat()
113 statp->page_size = PAGESIZE; in ac_mem_stat()
120 statp->busy = (mem_info->busy != FALSE); in ac_mem_stat()
159 statp->phys_pages = memq.phys_pages; in ac_mem_stat()
160 statp->managed = memq.managed; in ac_mem_stat()
162 statp->nonrelocatable = memq.phys_pages; in ac_mem_stat()
164 statp->nonrelocatable = memq.nonrelocatable; in ac_mem_stat()
168 statp->phys_pages = npgs; in ac_mem_stat()
182 stat32p->rstate = statp->rstate; in ac_mem_stat()
183 stat32p->ostate = statp->ostate; in ac_mem_stat()
184 stat32p->condition = statp->condition; in ac_mem_stat()
185 stat32p->status_time = (time32_t)statp->status_time; in ac_mem_stat()
186 stat32p->board = statp->board; in ac_mem_stat()
187 stat32p->real_size = statp->real_size; in ac_mem_stat()
188 stat32p->use_size = statp->use_size; in ac_mem_stat()
189 stat32p->busy = statp->busy; in ac_mem_stat()
190 stat32p->page_size = statp->page_size; in ac_mem_stat()
191 stat32p->phys_pages = statp->phys_pages; in ac_mem_stat()
192 stat32p->managed = statp->managed; in ac_mem_stat()
193 stat32p->nonrelocatable = statp->nonrelocatable; in ac_mem_stat()
194 stat32p->ac_memctl = statp->ac_memctl; in ac_mem_stat()
195 stat32p->ac_decode0 = statp->ac_decode0; in ac_mem_stat()
196 stat32p->ac_decode1 = statp->ac_decode1; in ac_mem_stat()
206 if (ddi_copyout(statp, pkt->cmd_cfga.private, in ac_mem_stat()
213 if (ddi_copyout(statp, pkt->cmd_cfga.private, in ac_mem_stat()
220 kmem_free(statp, sizeof (ac_stat_t)); in ac_mem_stat()