Home
last modified time | relevance | path

Searched refs:cmds (Results 1 – 24 of 24) sorted by relevance

/f-stack/freebsd/kern/
H A Dsys_capability.c363 u_long *cmds; in cap_ioctl_check() local
378 cmds = fdep->fde_ioctls; in cap_ioctl_check()
380 if (cmds[i] == cmd) in cap_ioctl_check()
448 fdep->fde_ioctls = cmds; in kern_cap_ioctls_limit()
452 cmds = ocmds; in kern_cap_ioctls_limit()
457 free(cmds, M_FILECAPS); in kern_cap_ioctls_limit()
464 u_long *cmds; in sys_cap_ioctls_limit() local
474 cmds = NULL; in sys_cap_ioctls_limit()
476 cmds = malloc(sizeof(cmds[0]) * ncmds, M_FILECAPS, M_WAITOK); in sys_cap_ioctls_limit()
477 error = copyin(uap->cmds, cmds, sizeof(cmds[0]) * ncmds); in sys_cap_ioctls_limit()
[all …]
H A Dvfs_default.c1333 vfs_stdquotactl (mp, cmds, uid, arg) in vfs_stdquotactl() argument
1335 int cmds;
H A Dsystrace_args.c2999 uarg[1] = (intptr_t) p->cmds; /* const u_long * */ in systrace_args()
3008 uarg[1] = (intptr_t) p->cmds; /* u_long * */ in systrace_args()
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/cmd/chg_usr_exec/
H A Dchg_usr_exec.c40 char cmds[BUFSIZ] = { 0 }; in main() local
53 (void) snprintf(cmds+len, sizeof (cmds)-len, in main()
71 if (execl(EXECSHELL, "sh", "-c", cmds, (char *)NULL) != 0) { in main()
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/cmd/user_ns_exec/
H A Duser_ns_exec.c42 char cmds[BUFSIZ] = { 0 }; in child_main() local
76 (void) snprintf(cmds+len, sizeof (cmds)-len, in child_main()
81 if (execl(EXECSHELL, "sh", "-c", cmds, (char *)NULL) != 0) { in child_main()
/f-stack/dpdk/drivers/raw/octeontx2_dma/
H A Dotx2_dpi_rawdev.c74 dma_queue_write(struct dpi_vf_s *dpi, uint16_t cmd_count, uint64_t *cmds) in dma_queue_write() argument
79 if (cmds == NULL) in dma_queue_write()
89 *ptr++ = *cmds++; in dma_queue_write()
108 *ptr++ = *cmds++; in dma_queue_write()
119 *ptr++ = *cmds++; in dma_queue_write()
137 dma_queue_submit(struct rte_rawdev *dev, uint16_t cmd_count, uint64_t *cmds) in dma_queue_submit() argument
142 result = dma_queue_write(dpivf, cmd_count, cmds); in dma_queue_submit()
/f-stack/freebsd/contrib/octeon-sdk/
H A Dcvmx-cmd-queue.h344 … cvmx_cmd_queue_write(cvmx_cmd_queue_id_t queue_id, int use_locking, int cmd_count, uint64_t *cmds) in cvmx_cmd_queue_write() argument
354 if (cvmx_unlikely(cmds == NULL)) in cvmx_cmd_queue_write()
382 *ptr++ = *cmds++; in cvmx_cmd_queue_write()
403 *ptr++ = *cmds++; in cvmx_cmd_queue_write()
411 *ptr++ = *cmds++; in cvmx_cmd_queue_write()
H A Dcvmx-dma-engine.c318 uint64_t cmds[num_buffers + 1]; in cvmx_dma_engine_submit() local
330 cmds[0] = header.u64; in cvmx_dma_engine_submit()
333 cmds[cmd_count++] = buffers->u64; in cvmx_dma_engine_submit()
342 result = cvmx_cmd_queue_write(CVMX_CMD_QUEUE_DMA(engine), 0, cmd_count, cmds); in cvmx_dma_engine_submit()
/f-stack/tools/ngctl/
H A Dmain.c98 static const struct ngcmd *const cmds[] = { variable
529 for (k = 0; cmds[k] != NULL; k++) {
530 if (MatchCommand(cmds[k], string)) {
542 return (cmds[found]);
612 for (k = 0; cmds[k] != NULL; k++) {
615 cmd = cmds[k];
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlua_cmsgpack.c892 const struct luaL_Reg cmds[] = { variable
906 for (i = 0; i < (sizeof(cmds)/sizeof(*cmds) - 1); i++) { in luaopen_create()
907 lua_pushcfunction(L, cmds[i].func); in luaopen_create()
908 lua_setfield(L, -2, cmds[i].name); in luaopen_create()
941 for (i = 0; i < (sizeof(cmds)/sizeof(*cmds) - 1); i++) { in luaopen_cmsgpack_safe()
942 lua_getfield(L, -1, cmds[i].name); in luaopen_cmsgpack_safe()
944 lua_setfield(L, -2, cmds[i].name); in luaopen_cmsgpack_safe()
/f-stack/freebsd/contrib/openzfs/contrib/bash_completion.d/
H A Dzfs231 local cur prev cmd cmds
245 cmds=$(__zfs_get_commands)
246 COMPREPLY=($(compgen -W "$cmds -?" -- "$cur"))
430 local cur prev cmd cmds
438 cmds=$(__zpool_get_commands)
439 COMPREPLY=($(compgen -W "$cmds" -- "$cur"))
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool/
H A Dzpool_002_pos.ksh77 set -A cmds "create $pool mirror $vdev1 $vdev2" "list $pool" "iostat $pool" \
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs/
H A Dzfs_002_pos.ksh87 typeset cmds=("create $fs" "list $fs" "snapshot $snap" "set snapdir=hidden $fs" \
/f-stack/freebsd/sys/
H A Dcapsicum.h491 int cap_ioctls_limit(int fd, const cap_ioctl_t *cmds, size_t ncmds);
497 ssize_t cap_ioctls_get(int fd, cap_ioctl_t *cmds, size_t maxcmds);
H A Dsyscallsubr.h95 int kern_cap_ioctls_limit(struct thread *td, int fd, u_long *cmds,
H A Dmount.h758 typedef int vfs_quotactl_t(struct mount *mp, int cmds, uid_t uid, void *arg);
H A Dsysproto.h1621 char cmds_l_[PADL_(const u_long *)]; const u_long * cmds; char cmds_r_[PADR_(const u_long *)]; member
1626 char cmds_l_[PADL_(u_long *)]; u_long * cmds; char cmds_r_[PADR_(u_long *)]; member
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/zfs/
H A Dvdev_geom.c373 vdev_geom_io(struct g_consumer *cp, int *cmds, void **datas, off_t *offsets, in vdev_geom_io() argument
404 bios[j]->bio_cmd = cmds[i]; in vdev_geom_io()
446 int cmds[VDEV_LABELS]; in vdev_geom_read_config() local
465 cmds[l] = BIO_READ; in vdev_geom_read_config()
474 vdev_geom_io(cp, cmds, (void**)vdev_lists, offsets, sizes, errors, in vdev_geom_read_config()
H A Dzfs_vfsops.c105 static int zfs_quotactl(vfs_t *vfsp, int cmds, uid_t id, void *arg);
270 zfs_quotactl(vfs_t *vfsp, int cmds, uid_t id, void *arg) in zfs_quotactl() argument
280 cmd = cmds >> SUBCMDSHIFT; in zfs_quotactl()
281 type = cmds & SUBCMDMASK; in zfs_quotactl()
/f-stack/dpdk/doc/guides/sample_app_ug/
H A Dvdpa.rst42 internal cmds are supported:
/f-stack/tools/ifconfig/
H A Difconfig.c923 static struct cmd *cmds = NULL; variable
928 p->c_next = cmds; in cmd_register()
929 cmds = p; in cmd_register()
937 for (p = cmds; p != NULL; p = p->c_next) in cmd_lookup()
/f-stack/doc/
H A DLaunch_F-Stack_on_AWS_EC2_in_one_minute.md3 …If you have a Redhat7.3 EC2 instance,and then execute the following cmds, you will get the F-Stack…
/f-stack/tools/compat/include/sys/
H A Dsysproto.h296 char cmds_l_[PADL_(const u_long *)]; const u_long * cmds; char cmds_r_[PADR_(const u_long *)]; member
301 char cmds_l_[PADL_(u_long *)]; u_long * cmds; char cmds_r_[PADR_(u_long *)]; member
/f-stack/freebsd/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_misc.c1041 static const HAL_ANI_CMD cmds[] = { in ar9300_set_capability() local
1051 return capability < N(cmds) ? in ar9300_set_capability()
1052 ar9300_ani_control(ah, cmds[capability], setting) : in ar9300_set_capability()