Home
last modified time | relevance | path

Searched refs:user (Results 1 – 25 of 603) sorted by relevance

12345678910>>...25

/f-stack/freebsd/contrib/ngatm/netnatm/api/
H A Dcc_user.c81 user->cc->funcs->send_user(user, user->uarg, op, arg, len); in cc_user_send()
87 user->cc->funcs->respond_user(user, user->uarg, in cc_user_ok()
94 user->cc->funcs->respond_user(user, user->uarg, in cc_user_err()
111 user = CCZALLOC(sizeof(*user)); in cc_user_create()
112 if (user == NULL) in cc_user_create()
115 user->cc = cc; in cc_user_create()
118 strncpy(user->name, name, sizeof(user->name)); in cc_user_create()
119 user->name[sizeof(user->name) - 1] = '\0'; in cc_user_create()
126 return (user); in cc_user_create()
203 cc_user_log(user, "destroy '%s'", user->name); in cc_user_destroy()
[all …]
H A Dcc_conn.c112 conn->user = NULL; in cc_disconnect_from_user()
125 conn->user = user; in cc_connect_to_user()
684 if (user->queue_max == user->queue_act) { in cc_conn_dispatch()
777 memset(&conn->user->cause[1], 0, sizeof(conn->user->cause[1])); in cc_party_drop_ack_ind()
785 memset(&conn->user->cause[1], 0, sizeof(conn->user->cause[1])); in cc_party_drop_ack_ind()
927 struct ccuser *user = conn->user; in cc_conn_sig_handle() local
946 struct ccuser *user = conn->user; in cc_conn_sig_handle() local
1592 memset(&conn->user->cause[1], 0, sizeof(conn->user->cause[1])); in cc_conn_sig_handle()
1625 memset(&conn->user->cause[1], 0, sizeof(conn->user->cause[1])); in cc_conn_sig_handle()
1665 struct ccuser *user = conn->user; in cc_conn_sig_handle() local
[all …]
H A Dcc_dump.c162 sap->blli_id2.user); in cc_dump_sap()
168 sap->blli_id3.proto, sap->blli_id3.user, in cc_dump_sap()
190 cc_dumpf(d, "user(%p): %s '%s' %s\n", user, in cc_dump_user()
191 cc_user_state2str(user->state), user->name, in cc_dump_user()
192 (user->config == USER_P2P) ? "p2p" : in cc_dump_user()
193 (user->config == USER_ROOT) ? "root" : in cc_dump_user()
195 if (user->sap) in cc_dump_user()
196 cc_dump_sap(d, user->sap); in cc_dump_user()
199 user->queue_act, user->accepted, user->aborted); in cc_dump_user()
303 struct ccuser *user; in cc_dump() local
[all …]
H A Dcc_sig.c122 s = sig_alloc(user->cc, SIG_USER, user, 0, sig, arg1, arg2); in cc_user_sig()
125 TAILQ_INSERT_TAIL(&user->cc->sigs, s, link); in cc_user_sig()
126 cc_sig_log(user->cc, "queuing sig %s to user %p", cc_user_sigtab[sig], in cc_user_sig()
127 user); in cc_user_sig()
137 s = sig_alloc(user->cc, SIG_USER, user, msg != NULL, sig, msg, 0); in cc_user_sig_msg()
140 TAILQ_INSERT_TAIL(&user->cc->sigs, s, link); in cc_user_sig_msg()
141 cc_sig_log(user->cc, "queuing sig %s to user %p", cc_user_sigtab[sig], in cc_user_sig_msg()
142 user); in cc_user_sig_msg()
285 cc_user_sig_flush(struct ccuser *user) in cc_user_sig_flush() argument
288 cc_sig_log(user->cc, "flushing signals to user %p", user); in cc_user_sig_flush()
[all …]
H A Dcc_data.c124 const struct ccuser *user; in cc_get_extended_status() local
135 LIST_FOREACH(user, &cc->user_list, node_link) in cc_get_extended_status()
175 LIST_FOREACH(user, &cc->user_list, node_link) { in cc_get_extended_status()
176 strcpy(eep->name, user->name); in cc_get_extended_status()
177 eep->state = user->state; in cc_get_extended_status()
184 if (conn->user != NULL) in cc_get_extended_status()
185 strcpy(econn->ep, conn->user->name); in cc_get_extended_status()
207 if (conn->user != NULL) in cc_get_extended_status()
208 strcpy(econn->ep, conn->user->name); in cc_get_extended_status()
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/delegate/
H A Ddelegate_common.kshlib89 typeset user
134 typeset user
160 typeset user=$1
200 typeset user=$1
301 typeset user=$1
377 typeset user=$1
406 typeset user=$1
479 typeset user=$1
485 user_run $user zfs set "$user:ts=$stamp" $dtst
1697 user_run $user zfs allow $user allow $dtst
[all …]
H A Dzfs_allow_005_pos.ksh61 for user in $EVERYONE; do
62 childfs=$ROOT_TESTFS/$user
64 user_run $user zfs create $childfs
70 if [[ $other == $user ]]; then
71 log_must verify_perm $childfs $perms $user
/f-stack/dpdk/lib/librte_eal/include/generic/
H A Drte_spinlock.h185 volatile int user; /**< core id using lock, -1 for unused */ member
203 slr->user = -1; in rte_spinlock_recursive_init()
217 if (slr->user != id) { in rte_spinlock_recursive_lock()
219 slr->user = id; in rte_spinlock_recursive_lock()
232 slr->user = -1; in rte_spinlock_recursive_unlock()
250 if (slr->user != id) { in rte_spinlock_recursive_trylock()
253 slr->user = id; in rte_spinlock_recursive_trylock()
H A Drte_ticketlock.h130 int user; /**< core id using lock, TICKET_LOCK_INVALID_ID for unused */ member
150 __atomic_store_n(&tlr->user, TICKET_LOCK_INVALID_ID, __ATOMIC_RELAXED); in rte_ticketlock_recursive_init()
165 if (__atomic_load_n(&tlr->user, __ATOMIC_RELAXED) != id) { in rte_ticketlock_recursive_lock()
167 __atomic_store_n(&tlr->user, id, __ATOMIC_RELAXED); in rte_ticketlock_recursive_lock()
182 __atomic_store_n(&tlr->user, TICKET_LOCK_INVALID_ID, in rte_ticketlock_recursive_unlock()
201 if (__atomic_load_n(&tlr->user, __ATOMIC_RELAXED) != id) { in rte_ticketlock_recursive_trylock()
204 __atomic_store_n(&tlr->user, id, __ATOMIC_RELAXED); in rte_ticketlock_recursive_trylock()
/f-stack/freebsd/contrib/openzfs/tests/test-runner/bin/
H A Dtest-runner.py.in167 self.user = user or ''
190 do_sudo = len(self.user) != 0
225 if not user or user is me:
323 user = ' (run as %s)' % (self.user if len(self.user) else logname)
419 for user in [user for user in users if len(user)]:
438 user=self.user)
529 for user in [user for user in users if len(user)]:
571 timeout=self.timeout, user=self.user,
894 def verify_user(user): argument
901 if user in Cmd.verified_users:
[all …]
/f-stack/lib/
H A Dff_ini_parser.c74 void* user) in ini_parse_stream() argument
121 if (!handler(user, section, prev_name, start) && !error) in ini_parse_stream()
155 if (!handler(user, section, name, value) && !error) in ini_parse_stream()
178 int ini_parse_file(FILE* file, ini_handler handler, void* user) in ini_parse_file() argument
180 return ini_parse_stream((ini_reader)fgets, file, handler, user); in ini_parse_file()
184 int ini_parse(const char* filename, ini_handler handler, void* user) in ini_parse() argument
192 error = ini_parse_file(file, handler, user); in ini_parse()
H A Dff_ini_parser.h21 typedef int (*ini_handler)(void* user, const char* section,
40 int ini_parse(const char* filename, ini_handler handler, void* user);
44 int ini_parse_file(FILE* file, ini_handler handler, void* user);
49 void* user);
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/
H A Duserquota_006_pos.ksh62 for user in "${no_users[@]}"; do
63 log_mustnot eval "id $user >/dev/null 2>&1"
64 log_must eval "zfs get userquota@$user $QFS >/dev/null 2>&1"
65 log_must eval "zfs get userquota@$user $snap_fs >/dev/null 2>&1"
H A Duserspace_003_pos.ksh61 typeset user=$2
63 awk /$user/'{print $2}')
64 typeset -i zfsgetcnt=$(zfs get -H -ovalue userobjused@$user $fs)
67 verify_eq "$userspacecnt" "$zfsgetcnt" "userobjused@$user"
H A Duserquota_005_neg.ksh62 for user in "${no_users[@]}"; do
63 log_mustnot id $user
64 log_mustnot zfs set userquota@$user=100m $QFS
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/history/
H A Dhistory_common.kshlib36 typeset user pool
43 user=$OPTARG
50 user=${user:-"root"}
74 if [[ $user == "root" ]]; then
77 log_must user_run $user "$fullcmd"
95 [[ $flags =~ "l" ]] && log_must verify_long "$histcmd" "$user" "$flags"
101 typeset user=$2
106 typeset uid=$(id -u $user)
119 grep -q "$cmd \[user $uid ($user) on $hname$suffix\]" $NEW_HISTORY
/f-stack/dpdk/doc/guides/howto/
H A Dvirtio_user_as_exceptional_path.rst9 The virtual device, virtio-user, was originally introduced with vhost-user
11 and user space container networking.
30 send/receive packets to/from user space DPDK applications, which has little
31 impact on user space polling thread (except that it might enter into kernel
34 The overview of an application using virtio-user as exceptional path is shown
41 Overview of a DPDK app using virtio-user as exceptional path
64 with outside, and one virtio-user to communicate with kernel.
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/acl/
H A Dacl_common.kshlib358 typeset user=$1
362 if [[ $user == "" || $node == "" || $acl_spec == "" ]]; then
370 chgusr_exec $user ls -l $node > /dev/null 2>&1
376 chgusr_exec $user touch ${node}/tmpfile > \
380 chgusr_exec $user find $node > /dev/null 2>&1
386 chgusr_exec $user cat $node > /dev/null 2>&1
389 chgusr_exec $user dd if=/usr/bin/ls of=$node > \
393 ZFS_ACL_ERR_STR=$(chgusr_exec $user $node 2>&1)
/f-stack/dpdk/doc/guides/sample_app_ug/
H A Dvhost_blk.rst8 which used as the backend of Qemu vhost-user-blk device. Users can extend
10 memory based block device. Similar with vhost-user-net device, the sample
15 Development Kit, https://github.com/spdk/spdk) vhost-user-blk target,
16 for DPDK vhost library used in storage area, user can take SPDK as
54 -device vhost-user-blk-pci,packed=on,chardev=char0,num-queues=1 \
58 You must check whether your Qemu can support "vhost-user-blk" or not,
H A Dvdpa.rst7 The vdpa sample application creates vhost-user sockets by using the
17 This section shows the steps of how to start VMs with vDPA vhost-user
39 /tmp/vhost-user-, then the socket files will be named as /tmp/vhost-user-<n>
89 -netdev type=vhost-user,id=vdpa,chardev=char0 \
96 Suggest to use QEMU 3.0.0 which extends vhost-user for vDPA.
100 vDPA supports cross-backend live migration, user can migrate SW vhost backend
H A Dvhost_crypto.rst8 which used as the backend of Qemu vhost-user-crypto device. Similar with
9 vhost-user-net and vhost-user-scsi device, the sample application used
51 the user wants to use LKCF in the guest, this feature shall be turned off.
75 -object cryptodev-vhost-user,id={obj_id},chardev={chardev_id} \
80 You must check whether your Qemu can support "vhost-user-crypto" or not.
/f-stack/freebsd/contrib/device-tree/Bindings/sound/
H A Dwidgets.txt7 "template-wname", "user-supplied-wname"
12 The "user-supplied-wname" being the user specified widget name.
/f-stack/dpdk/doc/guides/prog_guide/
H A Dvhost_lib.rst7 The vhost library implements a user space virtio net server allowing the user
8 to manipulate the virtio ring directly. In another words, it allows the user
124 vhost-user driver could be vhost-user net, yet it could be something else,
125 say, vhost-user SCSI.
174 the end of initializing a vhost-user driver.
192 Frees the memory and vhost-user message handlers created in
262 Vhost-user Implementations
266 vhost-user implementation has two options:
268 * DPDK vhost-user acts as the server.
276 * DPDK vhost-user acts as the client.
[all …]
/f-stack/freebsd/contrib/device-tree/src/arm/
H A Dimx6ul-phytec-segin-peb-eval-01.dtsi24 user_leds: user-leds {
30 user-led1 {
36 user-led2 {
H A Dste-nomadik-s8815.dts76 user-led {
84 user-button {
147 /* The user LED on the board is set up to be used for heartbeat */
150 user-led {
163 user-button {

12345678910>>...25