HomeSort by: relevance | last modified time | path
    Searched defs:pfs (Results 1 - 17 of 17) sorted by relevancy

  /src/sys/arch/powerpc/powerpc/
procfs_machdep.c 34 struct pfsnode *pfs = vp->v_data; local
36 switch (pfs->pfs_type) {
38 pfs->pfs_mode = S_IRUSR|S_IWUSR;
48 procfs_machdep_rw(struct lwp *curl, struct lwp *l, struct pfsnode *pfs,
52 switch (pfs->pfs_type) {
54 return (procfs_machdep_dovecregs(curl, l, pfs, uio));
67 struct pfsnode *pfs = VTOPFS(vp); local
69 switch (pfs->pfs_type) {
83 struct pfsnode *pfs, struct uio *uio)
  /src/sys/arch/x86/x86/
procfs_machdep.c 482 struct pfsnode *pfs = vp->v_data; local
484 switch (pfs->pfs_type) {
487 pfs->pfs_mode = S_IRUSR|S_IWUSR;
496 procfs_machdep_rw(struct lwp *curl, struct lwp *l, struct pfsnode *pfs,
500 switch (pfs->pfs_type) {
502 return (procfs_machdep_doxmmregs(curl, l, pfs, uio));
512 struct pfsnode *pfs = VTOPFS(vp); local
514 switch (pfs->pfs_type) {
526 struct pfsnode *pfs, struct uio *uio)
  /src/sys/miscfs/procfs/
procfs_subr.c 148 struct pfsnode *pfs = VTOPFS(vp); local
156 procfs_proc_lock(vp->v_mount, pfs->pfs_pid, &p, ESRCH)) != 0)
169 p, pfs, KAUTH_ARG(M2K(uio->uio_rw)), NULL);
192 switch (pfs->pfs_type) {
195 error = procfs_donote(curl, p, pfs, uio);
199 error = procfs_doregs(curl, l, pfs, uio);
203 error = procfs_dofpregs(curl, l, pfs, uio);
207 error = procfs_dostatus(curl, l, pfs, uio);
211 error = procfs_do_pid_stat(curl, l, pfs, uio);
215 error = procfs_dolimit(curl, p, pfs, uio)
    [all...]
procfs_vfsops.c 143 procfs_hashrem(struct pfsnode *pfs)
147 LIST_REMOVE(pfs, pfs_hash);
305 struct pfsnode *pfs; local
310 pfs = kmem_alloc(sizeof(*pfs), KM_SLEEP);
311 pfs->pfs_pid = pfskey.pk_pid;
312 pfs->pfs_type = pfskey.pk_type;
313 pfs->pfs_fd = pfskey.pk_fd;
314 pfs->pfs_vnode = vp;
315 pfs->pfs_mount = mp
555 struct pfsnode *pfs; local
598 struct pfsnode *pfs; local
    [all...]
procfs_vnops.c 364 struct pfsnode *pfs = VTOPFS(vp); local
370 procfs_proc_lock(vp->v_mount, pfs->pfs_pid, &p2, ENOENT)) != 0)
382 p2, pfs, KAUTH_ARG(M2K(ap->a_mode)), NULL);
391 switch (pfs->pfs_type) {
393 if (((pfs->pfs_flags & FWRITE) && (ap->a_mode & O_EXCL)) ||
394 ((pfs->pfs_flags & O_EXCL) && (ap->a_mode & FWRITE))) {
405 pfs->pfs_flags = ap->a_mode & (FWRITE|O_EXCL);
440 struct pfsnode *pfs = VTOPFS(ap->a_vp); local
442 switch (pfs->pfs_type) {
444 if ((ap->a_fflag & FWRITE) && (pfs->pfs_flags & O_EXCL)
472 struct pfsnode *pfs = VTOPFS(vp); local
495 struct pfsnode *pfs = VTOPFS(vp); local
561 struct pfsnode *pfs = VTOPFS(ap->a_vp); local
659 struct pfsnode *pfs = VTOPFS(vp); local
1075 struct pfsnode *pfs; local
1422 struct pfsnode *pfs; local
1807 struct pfsnode *pfs = VTOPFS(vp); local
    [all...]
  /src/sys/arch/ia64/unwind/
stackframe.h 71 struct regstate pfs; member in struct:staterecord
85 uint64_t pfs; /* Previous Frame size info */ member in struct:unwind_frame
109 /* Convenience macros to decompose CFM & ar.pfs. */
  /src/usr.sbin/fstyp/
hammer2.c 198 find_pfs(FILE *fp, const hammer2_blockref_t *bref, const char *pfs, bool *res)
223 (const char*)ipdata.filename, pfs))
226 if (strlen(pfs) > 0 &&
227 !memcmp(ipdata.filename, pfs,
228 strlen(pfs)))
249 if (find_pfs(fp, &bscan[i], pfs, res) == -1) {
298 const char *pfs; local
339 pfs = strchr(devpath, '@');
340 if (!pfs) {
344 pfs = "BOOT"
    [all...]
  /src/sys/dist/pf/net/
pf_ioctl.c 1985 struct pf_state *pfs; local
1989 RB_FOREACH(pfs, pf_state_tree_id, &tree_id) {
1994 if (pfs == NULL) {
2000 pfs->state_key, pfs);
  /src/crypto/dist/ipsec-tools/src/racoon/
oakley.c 473 /* compute sharing secret of DH when PFS */
496 * If PFS is desired and KE payloads were exchanged,
509 int pfs = 0; local
515 pfs = ((iph2->approval->pfs_group && iph2->dhgxy) ? 1 : 0);
517 len = pfs ? iph2->dhgxy->l : 0;
532 /* if PFS */
533 if (pfs) {
  /src/sys/arch/ia64/include/
_regset.h 61 unsigned long pfs; member in struct:_special
  /src/external/bsd/wpa/dist/src/common/
dpp_crypto.c 2006 struct dpp_pfs *pfs; local
2008 pfs = os_zalloc(sizeof(*pfs));
2009 if (!pfs)
2012 own_key = dpp_set_keypair(&pfs->curve, net_access_key,
2020 pfs->ecdh = crypto_ecdh_init(pfs->curve->ike_group);
2021 if (!pfs->ecdh)
2024 pub = crypto_ecdh_get_pubkey(pfs->ecdh, 0);
2025 pub = wpabuf_zeropad(pub, pfs->curve->prime_len)
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/ia64/
unwind-ia64.c 197 unw_word *pfs_loc; /* Save location for pfs in current
200 unw_word *signal_pfs_loc;/* Save location for pfs in current
202 pfs for caller. */
1890 handler: should we restore the cfm as usual or the pfs? We can't
1892 For other frames the procedure is by definition non-leaf so the pfs
1897 - either the pfs is saved and restored and thus effectively dead
1900 - or the pfs is not saved and thus live; but in that case the
1902 and we restore the pfs. */
2108 unw_word pfs = *context->pfs_loc;
2109 unw_word sol = (pfs >> 7) & 0x7f
2100 unw_word pfs = *context->pfs_loc; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/ia64/
unwind-ia64.c 197 unw_word *pfs_loc; /* Save location for pfs in current
200 unw_word *signal_pfs_loc;/* Save location for pfs in current
202 pfs for caller. */
1890 handler: should we restore the cfm as usual or the pfs? We can't
1892 For other frames the procedure is by definition non-leaf so the pfs
1897 - either the pfs is saved and restored and thus effectively dead
1900 - or the pfs is not saved and thus live; but in that case the
1902 and we restore the pfs. */
2108 unw_word pfs = *context->pfs_loc;
2109 unw_word sol = (pfs >> 7) & 0x7f
2100 unw_word pfs = *context->pfs_loc; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
ia64-tdep.c 206 "pfs", "lc", "ec",
3640 ULONGEST cfm, pfs, new_bsp;
3647 regcache_cooked_read_unsigned (regcache, IA64_PFS_REGNUM, &pfs);
3648 pfs &= 0xc000000000000000LL;
3649 pfs |= (cfm & 0xffffffffffffLL);
3650 regcache_cooked_write_unsigned (regcache, IA64_PFS_REGNUM, pfs);
3639 ULONGEST cfm, pfs, new_bsp; local
  /src/external/gpl3/gdb/dist/gdb/stubs/
ia64vms-stub.c 264 union ia64_ireg pfs; member in struct:ia64_all_regs
1558 sel_regs.pfs.v = regs.pfs;
1810 ireg2pkt (regs->pfs.b);
2133 excp_regs.pfs.v = intstk->intstk$q_pfs;
  /src/external/gpl3/gdb.old/dist/gdb/
ia64-tdep.c 206 "pfs", "lc", "ec",
3642 ULONGEST cfm, pfs, new_bsp;
3649 regcache_cooked_read_unsigned (regcache, IA64_PFS_REGNUM, &pfs);
3650 pfs &= 0xc000000000000000LL;
3651 pfs |= (cfm & 0xffffffffffffLL);
3652 regcache_cooked_write_unsigned (regcache, IA64_PFS_REGNUM, pfs);
3641 ULONGEST cfm, pfs, new_bsp; local
  /src/external/gpl3/gdb.old/dist/gdb/stubs/
ia64vms-stub.c 264 union ia64_ireg pfs; member in struct:ia64_all_regs
1558 sel_regs.pfs.v = regs.pfs;
1810 ireg2pkt (regs->pfs.b);
2133 excp_regs.pfs.v = intstk->intstk$q_pfs;

Completed in 55 milliseconds