Searched refs:box (Results 1 - 25 of 41) sorted by relevance

12

/freebsd-current/crypto/openssh/
H A Dsandbox-null.c44 struct ssh_sandbox *box; local
50 box = xcalloc(1, sizeof(*box));
51 return box;
55 ssh_sandbox_child(struct ssh_sandbox *box) argument
61 ssh_sandbox_parent_finish(struct ssh_sandbox *box) argument
63 free(box);
67 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid) argument
H A Dsandbox-solaris.c48 struct ssh_sandbox *box = NULL; local
50 box = xcalloc(1, sizeof(*box));
53 box->pset = solaris_basic_privset();
55 if (box->pset == NULL) {
56 free(box);
61 if (priv_delset(box->pset, PRIV_FILE_LINK_ANY) != 0 ||
63 priv_delset(box->pset, PRIV_NET_ACCESS) != 0 ||
66 priv_delset(box->pset, PRIV_DAX_ACCESS) != 0 ||
69 priv_delset(box
92 ssh_sandbox_child(struct ssh_sandbox *box) argument
101 ssh_sandbox_parent_finish(struct ssh_sandbox *box) argument
109 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid) argument
[all...]
H A Dsandbox-pledge.c47 struct ssh_sandbox *box; local
50 box = xcalloc(1, sizeof(*box));
51 box->child_pid = 0;
53 return box;
57 ssh_sandbox_child(struct ssh_sandbox *box) argument
64 ssh_sandbox_parent_finish(struct ssh_sandbox *box) argument
66 free(box);
71 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid) argument
73 box
[all...]
H A Dsandbox-rlimit.c46 struct ssh_sandbox *box; local
53 box = xcalloc(1, sizeof(*box));
54 box->child_pid = 0;
56 return box;
60 ssh_sandbox_child(struct ssh_sandbox *box) argument
84 ssh_sandbox_parent_finish(struct ssh_sandbox *box) argument
86 free(box);
91 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid) argument
93 box
[all...]
H A Dsandbox-darwin.c46 struct ssh_sandbox *box; local
53 box = xcalloc(1, sizeof(*box));
54 box->child_pid = 0;
56 return box;
60 ssh_sandbox_child(struct ssh_sandbox *box) argument
87 ssh_sandbox_parent_finish(struct ssh_sandbox *box) argument
89 free(box);
94 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid) argument
96 box
[all...]
H A Dsandbox-capsicum.c55 struct ssh_sandbox *box; local
62 box = xcalloc(1, sizeof(*box));
63 box->monitor = monitor;
64 box->child_pid = 0;
66 return box;
70 ssh_sandbox_child(struct ssh_sandbox *box) argument
103 if (cap_rights_limit(box->monitor->m_recvfd, &rights) < 0 &&
107 if (cap_rights_limit(box->monitor->m_log_sendfd, &rights) < 0 &&
116 ssh_sandbox_parent_finish(struct ssh_sandbox *box) argument
123 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid) argument
[all...]
H A Dsandbox-systrace.c102 struct ssh_sandbox *box; local
105 box = xcalloc(1, sizeof(*box));
106 box->systrace_fd = -1;
107 box->child_pid = 0;
108 box->osigchld = ssh_signal(SIGCHLD, SIG_IGN);
110 return box;
114 ssh_sandbox_child(struct ssh_sandbox *box) argument
117 ssh_signal(SIGCHLD, box->osigchld);
124 ssh_sandbox_parent(struct ssh_sandbox *box, pid_ argument
203 ssh_sandbox_parent_finish(struct ssh_sandbox *box) argument
213 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid) argument
[all...]
H A Dsandbox-seccomp-filter.c439 struct ssh_sandbox *box; local
446 box = xcalloc(1, sizeof(*box));
447 box->child_pid = 0;
449 return box;
490 ssh_sandbox_child(struct ssh_sandbox *box) argument
531 ssh_sandbox_parent_finish(struct ssh_sandbox *box) argument
533 free(box);
538 ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid) argument
540 box
[all...]
/freebsd-current/release/
H A DMakefile.vagrant7 # make vagrant-box WITH_VMIMAGES=y WITH_CLOUDWARE=y \
67 CLEANFILES+= vagrant-do-package-${PROVIDER} ${VAGRANT_TARGET}.${PROVIDER}.box
74 ${VAGRANT_TARGET}.${PROVIDER}.box: ${PROVIDER} cw-vagrant-${PROVIDER} vagrant-create-${PROVIDER}-metadata
75 @echo "==> PACKAGING: ${VAGRANT_TARGET}.${PROVIDER}.box in `pwd`"
79 @(cd ${.OBJDIR}/${PROVIDER} && tar -czf ../${VAGRANT_TARGET}.${PROVIDER}.box metadata.json box.ovf vagrant.vmdk)
82 @(cd ${.OBJDIR}/${PROVIDER} && tar -czf ../${VAGRANT_TARGET}.${PROVIDER}.box metadata.json vagrant.vmx vagrant.vmdk)
86 vagrant-do-upload-${PROVIDER}: vagrant-box
88 ${.CURDIR}/scripts/atlas-upload.sh -b ${TYPE}-${REVISION}-${BRANCH} -f ${VAGRANT_TARGET}.${PROVIDER}.box -p ${PROVIDER} -k ${VAGRANT_KEY} -u ${VAGRANT_USERNAME} -v ${VAGRANT_VERSION}
90 ${.CURDIR}/scripts/atlas-upload.sh -b ${TYPE}-${REVISION}-${BRANCH} -f ${VAGRANT_TARGET}.${PROVIDER}.box
[all...]
/freebsd-current/contrib/dialog/samples/
H A Deditbox210 Hi, this is an edit box. It can be used to edit text from a file.
H A Deditbox12 Hi, this is an edit box. It can be used to edit text from a file.
H A Deditbox412 Hi, this is an edit box. It can be used to edit text from a file.
H A Dtextbox29 Hi, this is a text dialog box. It can be used to display text from a file.
H A Dtextbox9 Hi, this is a text dialog box. It can be used to display text from a file.
H A Deditbox-utf813 Hi, this is a edit box. You can use this to
/freebsd-current/release/scripts/
H A Datlas-upload.sh34 echo "-b box-name -d 'box description' -f box-to-upload -k api-key -p provider -u user -v version"
77 # Check to see if the box exists or create it
78 BOXRESULT=$(/usr/local/bin/curl -s "${ATLAS_UPLOAD_URL}/api/v1/box/${USERNAME}/${BOX}?access_token=${KEY}")
85 echo "Creating box: ${BOX}"
86 /usr/local/bin/curl -s ${ATLAS_UPLOAD_URL}/api/v1/boxes -X POST -d "box[name]=${BOX}" -d "access_token=${KEY}" > /dev/null
87 /usr/local/bin/curl -s ${ATLAS_UPLOAD_URL}/api/v1/box/${USERNAME}/${BOX} -X PUT -d "box[is_private]=false" -d "access_token=${KEY}" > /dev/null
88 /usr/local/bin/curl -s ${ATLAS_UPLOAD_URL}/api/v1/box/
[all...]
/freebsd-current/contrib/netbsd-tests/lib/libcurses/
H A Dt_curses.sh116 atf_test_case box
119 atf_set "descr" "Checks drawing a box around a window"
123 h_run box
278 atf_add_test_case box
/freebsd-current/sys/contrib/openzfs/module/icp/asm-x86_64/aes/
H A Daestab.h51 * t_xxx(s, box) => forward S box
52 * t_xxx(i, box) => inverse S box
104 d_1(uint8_t, t_dec(s, box), sb_data, h0);
107 d_1(uint8_t, t_dec(i, box), isb_data, h0);
H A Daesopt.h695 #define no_table(x, box, vf, rf, c) bytes2word(\
696 box[bval(vf(x, 0, c), rf(0, c))], \
697 box[bval(vf(x, 1, c), rf(1, c))], \
698 box[bval(vf(x, 2, c), rf(2, c))], \
699 box[bval(vf(x, 3, c), rf(3, c))])
757 #define ls_box(x, c) no_table(x, t_use(s, box), vf1, rf2, c)
/freebsd-current/contrib/bsddialog/lib/
H A Dformbox.c71 WINDOW *box; /* window to draw borders */ member in struct:privateform
532 getmaxyx(f->box, h, w);
533 draw_borders(conf, f->box, LOWERED);
536 wattron(f->box, t.dialog.arrowcolor);
538 mvwhline(f->box, 0, (w / 2) - 2, UARROW(conf), 5);
541 mvwhline(f->box, h-1, (w / 2) - 2, DARROW(conf), 5);
542 wattroff(f->box, t.dialog.arrowcolor);
620 TEXTPAD(d, 2 /* box borders */ + f->viewrows + HBUTTONS);
622 update_box(d->conf, f->box, d->y + d->h - 5 - f->viewrows, d->x + 2,
656 wnoutrefresh(f->box);
[all...]
H A Dmenubox.c57 WINDOW *box; /* only for borders */ member in struct:privatemenu
403 draw_borders(conf, m->box, LOWERED);
404 getmaxyx(m->box, h, w);
407 wattron(m->box, t.dialog.arrowcolor);
409 mvwhline(m->box, 0, 2, UARROW(conf), 3);
412 mvwhline(m->box, h-1, 2, DARROW(conf), 3);
414 mvwprintw(m->box, h-1, w-6, "%3d%%",
416 wattroff(m->box, t.dialog.arrowcolor);
448 2 /* border box */ + MIN(m->menurows, 1), 0) != 0)
481 update_box(d->conf, m->box,
[all...]
/freebsd-current/sys/contrib/libsodium/test/default/
H A DMakefile.am15 box.exp \
90 box.res \
166 box.final \
237 box.nexe \
321 box \
419 box_SOURCE = cmptest.h box.c
/freebsd-current/usr.bin/talk/
H A Dinit_disp.c108 box(line_win, '-', '-');
222 box(line_win, '-', '-');
/freebsd-current/contrib/lua/src/
H A Dlauxlib.c466 /* userdata to box arbitrary data */
468 void *box; member in struct:UBox
476 UBox *box = (UBox *)lua_touserdata(L, idx); local
477 void *temp = allocf(ud, box->box, box->bsize, newsize);
482 box->box = temp;
483 box->bsize = newsize;
494 static const luaL_Reg boxmt[] = { /* box metamethod
502 UBox *box = (UBox *)lua_newuserdatauv(L, sizeof(UBox), 0); local
[all...]
/freebsd-current/sys/crypto/openssl/arm/
H A Daes-armv4.S21 @ Code uses single 1K S-box and is >2 times faster than code generated

Completed in 165 milliseconds

12