/src/tests/lib/libobjc/ |
Makefile | 8 UNSUPPORTED_COMPILER.pcc= # defined
|
/src/usr.sbin/puffs/mount_9p/ |
subr.c | 105 struct puffs_cc *pcc = puffs_cc_getcc(pu); local in function:getdfwithoffset
|
nineproto.c | 233 struct puffs_cc *pcc = puffs_cc_getcc(pu); local in function:proto_cc_dupfid 261 struct puffs_cc *pcc = puffs_cc_getcc(pu); local in function:proto_cc_clunkfid 274 if (puffs_framev_enqueue_cc(pcc, p9p->servsock, pb, 0) == 0) { 296 struct puffs_cc *pcc = puffs_cc_getcc(pu); local in function:proto_cc_open
|
node.c | 273 struct puffs_cc *pcc = puffs_cc_getcc(pu); local in function:puffs9p_node_open 280 puffs_setback(pcc, PUFFS_SETBACK_INACT_N1); 550 struct puffs_cc *pcc = puffs_cc_getcc(pu); local in function:puffs9p_node_remove 559 puffs_setback(pcc, PUFFS_SETBACK_NOREF_N2); 568 struct puffs_cc *pcc = puffs_cc_getcc(pu); local in function:puffs9p_node_rmdir 577 puffs_setback(pcc, PUFFS_SETBACK_NOREF_N2);
|
/src/lib/libpuffs/ |
callcontext.c | 74 puffs_cc_yield(struct puffs_cc *pcc) 81 if ((~pcc->pcc_flags & (PCC_BORROWED|PCC_DONE)) == 0) { 82 pcc->pcc_flags &= ~(PCC_BORROWED|PCC_DONE); 86 puffs__cc_destroy(pcc, 1); 87 setcontext(&pcc->pcc_uc_ret); 89 pcc->pcc_flags &= ~PCC_BORROWED; 93 if ((pcc->pcc_flags & PCC_MLCONT) == 0) { 94 DPRINTF(("no mlcont, pcc %p\n", pcc)); 95 swapcontext(&pcc->pcc_uc, &pcc->pcc_uc_ret) 188 struct puffs_cc *volatile pcc; local in function:slowccalloc 227 struct puffs_cc *pcc; local in function:puffs__cc_create 326 struct puffs_cc *pcc; local in function:puffs__cc_exit [all...] |
dispatcher.c | 59 struct puffs_cc *pcc = puffs_cc_getcc(pu); local in function:puffs__ml_dispatch 62 pcc->pcc_pb = pb; 63 pcc->pcc_flags |= PCC_MLCONT; 64 dispatch(pcc); 67 preq = puffs__framebuf_getdataptr(pcc->pcc_pb); 73 pcc->pcc_pb, 0, 0); 75 puffs_framebuf_destroy(pcc->pcc_pb); 79 if (pcc->pcc_flags & PCC_BORROWED) { 80 puffs_cc_yield(pcc); /* back to borrow source */ 82 pcc->pcc_flags = 0 90 struct puffs_cc *pcc; local in function:puffs_dispatch_create [all...] |
puffs.c | 424 puffs_setback(struct puffs_cc *pcc, int whatback) 426 struct puffs_req *preq = puffs__framebuf_getdataptr(pcc->pcc_pb); 786 puffs__theloop(struct puffs_cc *pcc) 788 struct puffs_usermount *pu = pcc->pcc_pu; 800 while ((pcc = TAILQ_FIRST(&pu->pu_sched)) != NULL) { 801 TAILQ_REMOVE(&pu->pu_sched, pcc, pcc_schedent); 802 puffs__goto(pcc); 954 struct puffs_cc *pcc; local in function:puffs_mainloop 1010 if (puffs__cc_create(pu, puffs__theloop, &pcc) == -1) { 1038 puffs_cc_continue(pcc); [all...] |
framebuf.c | 55 struct puffs_cc *pcc; /* pcc to continue with */ member in struct:puffs_framebuf 84 struct puffs_cc *pcc; member in struct:puffs_fbevent 330 if (pufbuf->pcc) { 331 puffs__goto(pufbuf->pcc); 355 puffs_framev_enqueue_cc(struct puffs_cc *pcc, int fd, 358 struct puffs_usermount *pu = pcc->pcc_pu; 370 pufbuf->pcc = pcc; 382 puffs_cc_yield(pcc); [all...] |
/src/tests/usr.bin/xlint/lint1/ |
d_c99_bool.c | 72 const char *pcc; member in struct:convert_to_bool::variant 83 case 5: return v.pcc;
|
/src/libexec/telnetd/ |
global.c | 87 int pcc, ncc; variable in typeref:typename:int
|
/src/sys/uvm/ |
uvm_pgflcache.c | 117 struct pccolor *pcc; local in function:uvm_pgflcache_fill 131 pcc = &pc->color[c]; 134 if (pcc->count >= FILLPGS) { 139 count = pcc->count; 144 pcc->pages[count++] = pg; 153 pgb->pgb_nfree -= (count - pcc->count); 154 CPU_COUNT(CPU_COUNT_FREEPAGES, -(count - pcc->count)); 155 pcc->count = count; 171 struct pccolor *pcc; local in function:uvm_pgflcache_spill 177 pcc = &pc->color[c] 207 struct pccolor *pcc; local in function:uvm_pgflcache_alloc 240 struct pccolor *pcc; local in function:uvm_pgflcache_free [all...] |
/src/sys/kern/ |
subr_percpu.c | 94 percpu_cpu_t * const pcc = cpu_percpu(ci); local in function:percpu_cpu_swap 99 * swap *pcc and *newpcc unless anyone has beaten us. 102 if (newpcc->pcc_size > pcc->pcc_size) { 106 tmp = *pcc; 118 memcpy(newpcc->pcc_data, pcc->pcc_data, pcc->pcc_size); 124 pcc->pcc_data = newpcc->pcc_data; 128 pcc->pcc_size = newpcc->pcc_size; 145 percpu_cpu_t pcc; local in function:percpu_cpu_enlarge 147 pcc.pcc_data = kmem_alloc(size, KM_SLEEP); /* XXX cacheline * 244 percpu_cpu_t * const pcc = cpu_percpu(ci); local in function:percpu_init_cpu [all...] |
/src/usr.sbin/puffs/mount_psshfs/ |
node.c | 136 struct puffs_cc *pcc = puffs_cc_getcc(pu); local in function:psshfs_node_setattr 288 struct puffs_cc *pcc = puffs_cc_getcc(pu); local in function:psshfs_node_open 301 puffs_setback(pcc, PUFFS_SETBACK_INACT_N1); 347 rv = puffs_framev_framebuf_ccpromote(psn->lazyopen_r, pcc); 362 rv = puffs_framev_framebuf_ccpromote(psn->lazyopen_w, pcc); 391 struct puffs_cc *pcc = puffs_cc_getcc(pu); local in function:psshfs_node_readdir 404 pw.pw_cc = pcc; 407 puffs_cc_yield(pcc); 498 pw.pw_cc = pcc; 501 puffs_cc_yield(pcc); [all...] |
subr.c | 263 struct puffs_cc *pcc = puffs_cc_getcc(pu); local in function:sftp_readdir 291 if (puffs_framev_enqueue_cc(pcc, pctx->sshfd, pb, 0) == -1) {
|
/src/usr.sbin/perfused/ |
msg.c | 171 struct puffs_cc *pcc; local in function:perfused_new_pb 220 if ((pcc = puffs_cc_getcc(pu)) != NULL) 221 (void)puffs_cc_getcaller(pcc, (pid_t *)&fih->pid, NULL); 227 * framebuf send/receive primitives based on pcc are 264 struct puffs_cc *pcc; local in function:xchg_pb_inloop 270 pcc = puffs_cc_getcc(pu); 271 error = puffs_framev_enqueue_cc(pcc, fd, pb, 0);
|
/src/sys/arch/pmax/ibus/ |
pm.c | 264 struct dc503reg *pcc; local in function:pm_common_init 269 pcc = (void *)MIPS_PHYS_TO_KSEG1(KN01_SYS_PCC); 375 pcc->cmdr = PCCCMD_FOPB | PCCCMD_VBHI; 384 struct dc503reg *pcc; local in function:pm_cursor_off 386 pcc = (void *)MIPS_PHYS_TO_KSEG1(KN01_SYS_PCC); 387 pcc->cmdr = (pm_creg &= ~(PCCCMD_ENPA | PCCCMD_ENPB)); 394 struct dc503reg *pcc; local in function:pm_cursor_on 397 pcc = (void *)MIPS_PHYS_TO_KSEG1(KN01_SYS_PCC); 398 pcc->cmdr = (pm_creg |= (PCCCMD_ENPA | PCCCMD_ENPB)); 409 struct dc503reg *pcc; local in function:pm_ioctl 580 struct dc503reg *pcc; local in function:pm_flush [all...] |
/src/sbin/mount_portal/ |
puffs_portal.c | 328 struct puffs_cc *pcc = puffs_cc_getcc(pu); local in function:provide 357 puffs_framev_enqueue_directreceive(pcc, s[0], pufbuf, 0); 659 struct puffs_cc *pcc = puffs_cc_getcc(pu); local in function:portal_node_read 688 rv = puffs_framev_enqueue_directreceive(pcc, 733 struct puffs_cc *pcc = puffs_cc_getcc(pu); local in function:portal_node_write 752 rv = puffs_framev_enqueue_directsend(pcc, portn->fd, pufbuf, 0); 788 struct puffs_cc *pcc = puffs_cc_getcc(pu); local in function:portal_node_poll 800 if (puffs_framev_enqueue_waitevent(pcc, portn->fd, &what) == -1) {
|
/src/libexec/rlogind/ |
rlogind.c | 453 int pcc = 0, fcc = 0; local in function:protocol 474 if (pcc >= 0) { 475 if (pcc) 497 pcc = 0; 540 pcc = read(p, pibuf, sizeof (pibuf)); 542 if (pcc < 0 && errno == EWOULDBLOCK) 543 pcc = 0; 544 else if (pcc <= 0) 547 pbp++, pcc--; 553 pcc = 0 [all...] |
/src/lib/librefuse/ |
refuse.c | 238 struct puffs_cc *pcc = puffs_cc_getcc(pu); local in function:set_fuse_context_pid 242 puffs_cc_getcaller(pcc, &fusectx->pid, NULL);
|
/src/share/mk/ |
bsd.own.mk | 419 # PCC supports C and Fortran 420 TOOL_CC.pcc= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-pcc 421 TOOL_CPP.pcc= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-pcpp 422 TOOL_CXX.pcc= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-p++ 588 # PCC supports C and Fortran 589 TOOL_CC.pcc= pcc 590 TOOL_CPP.pcc= pcpp 591 TOOL_CXX.pcc= p+ [all...] |
/src/sys/external/bsd/gnu-efi/dist/inc/ |
efi_pxe.h | 948 // PCC BusType definitions. 958 } PCI, PCC; 1163 // For PCC bus devices, this field is set to PXE_BUSTYPE_PCC. 1168 // This identifies the PCC network device that this UNDI interface 1176 // This is a copy of the PCC configuration space for this 1201 PXE_PCC_CONFIG_INFO pcc; member in union:u_pxe_db_get_config_info
|