Searched refs:action (Results 1 - 25 of 390) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/cmd/fm/modules/common/disk-monitor/
H A Ddm_platform.h37 int dm_platform_update_fru(const char *action, dm_fru_t *fru);
38 int dm_platform_indicator_execute(const char *action);
/illumos-gate/usr/src/cmd/sgs/tsort/common/
H A Derraction.c45 erraction(int action) argument
47 switch (action) {
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dtcflow.c51 tcflow(int fildes, int action) argument
53 return (ioctl(fildes, TCXONC, action));
H A Dtsearch.c132 void (*action)(const void *, VISIT, int))
136 if (root != NULL && action != NULL)
137 __twalk(root, action, 0);
144 void (*action)(const void *, VISIT, int),
148 (*action)(root, leaf, level);
150 (*action)(root, preorder, level);
152 __twalk(root->llink, action, level + 1);
153 (*action)(root, postorder, level);
155 __twalk(root->rlink, action, level + 1);
156 (*action)(roo
[all...]
H A Dssignal.c50 ssignal(int sig, int (*action)(int)))(int) argument
56 sigs[sig-MINSIG] = action;
/illumos-gate/usr/src/cmd/sendmail/libsmutil/
H A Dlockfile.c46 int action; local
57 action = F_SETLK;
59 action = F_SETLKW;
61 if (fcntl(fd, action, &lfd) >= 0)
/illumos-gate/usr/src/cmd/sgs/mcs/common/
H A Dextern.h37 extern action *Action;
H A Dglobal.c36 action *Action;
/illumos-gate/usr/src/cmd/lp/lib/oam/
H A Dllib-llpoam37 void fmtmsg(char * label, int severity, char * text, char * action);
/illumos-gate/usr/src/boot/lib/libstand/
H A Dpager.c84 int action; local
99 action = 0;
100 while (action == 0) {
105 action = 1;
109 action = 1;
113 action = 2;
120 if (action == 2)
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/json/
H A Dtst.usdt.c26 " \"action\": \"%s\"" \
46 char *odd, *even, *json, *action; local
51 action = idx == 7 ? "ignore" : "print";
53 asprintf(&json, FMT, size, idx, odd, even, action);
/illumos-gate/usr/src/cmd/rctladm/
H A Drctladm.c114 uint_t action; local
125 action = rctlblk_get_global_action(gblk);
129 if (action & RCTL_GLOBAL_SYSLOG)
178 rctladm_setup_action(char *name, char *action, int line) argument
180 if (action[0] == '\0') {
185 rctladm_enable(name, action);
195 char *action; local
222 * Look for "rctl_name=action;action;...;action, wit
262 rctladm_modify_action(const char *rctl_name, uint_t enable, uint_t action, int log_level) argument
301 rctladm_get_log_level(char *action) argument
321 rctladm_enable(const char *rctl_name, char *action) argument
337 rctladm_disable(const char *rctl_name, char *action) argument
358 uint_t action = rctlblk_get_global_action(gblk); local
448 char *action; local
[all...]
/illumos-gate/usr/src/uts/common/inet/nca/
H A Dncaconf.h52 uchar_t action; member in struct:nca_set_ioctl
/illumos-gate/usr/src/cmd/mesg/
H A Dmesg.c64 int action = 0; local
99 if (action > 0)
103 action++;
107 if (action > 0)
112 action++;
125 if (action > 0)
/illumos-gate/usr/src/cmd/psradm/
H A Dpsradm.c92 psr_action_lookup(int action) argument
97 if (psr_action[i].p_op == action) {
112 psr_set_state(processorid_t cpu, int action, psr_action_t *pac, int mustexist) argument
131 if (old_state == P_FAULTED && action != P_FAULTED && !force) {
137 old_state = p_online(cpu, force ? action | P_FORCED : action);
148 if (old_state == action) {
189 do_range(processorid_t first, processorid_t last, int action, argument
198 if ((rv = psr_set_state(cpu, action, pac, 0)) > 0)
215 int action local
[all...]
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsfpkrd.c40 ssize_t sfpkrd(int fd, Void_t* argbuf, size_t n, int rc, long tm, int action) argument
42 ssize_t sfpkrd(fd, argbuf, n, rc, tm, action)
48 int action; /* >0: peeking, if rc>=0, get action records,
49 <0: no peeking, if rc>=0, get -action records,
58 if(rc < 0 && tm < 0 && action <= 0)
61 t = (action > 0 || rc >= 0) ? (STREAM_PEEK|SOCKET_PEEK) : 0;
92 { if(action <= 0) /* read past eof */
108 while(tm >= 0 || action > 0 ||
193 { if(action <
[all...]
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dtsearch.c128 * action: Function to be called at each node
131 twalk(NODE *root, void (*action)(NODE *, VISIT, int))
134 if (root != NULL && action != NULL)
135 _twalk(root, action, 0);
143 * action: Function to be called at each node
146 _twalk(NODE *root, void (*action)(NODE *, VISIT, int), int level)
149 (*action)(root, leaf, level);
151 (*action)(root, preorder, level);
153 _twalk(root->llink, action, level + 1);
154 (*action)(roo
[all...]
/illumos-gate/usr/src/lib/libslp/clib/
H A Dslp_search.c38 * cookies into the action function (prohibiting thread-safe usage).
59 void (*action)(void *, VISIT, int, void *),
63 (*action)(root, leaf, level, cookie);
65 (*action)(root, preorder, level, cookie);
67 slp_twalk(root->llink, action, level + 1, cookie);
68 (*action)(root, postorder, level, cookie);
70 slp_twalk(root->rlink, action, level + 1, cookie);
71 (*action)(root, endorder, level, cookie);
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/
H A Dlookup.c102 lookup(name, action, value)
104 int action;
113 printf("lookup(%s, %d, %x)\n", name, action, value);
123 if (action != LOOKUP) {
124 if (action != INSERT || s->s_type != CONST) {
133 if (action == LOOKUP) {
145 s->s_type = action == INSERT ? VAR : CONST;
/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dautod_lookup.c50 autofs_action_t *action,
64 * Default action is for no work to be done by kernel AUTOFS.
66 *action = AUTOFS_NONE;
124 if (mapents == NULL && *action == AUTOFS_NONE) {
155 if (mapents == NULL && *action == AUTOFS_NONE)
161 if (*action == AUTOFS_NONE && (iswildcard == TRUE)) {
162 *action = AUTOFS_MOUNT_RQ;
165 trace_prt(1, " do_lookup1: action=%d wildcard=%s error=%d\n",
166 *action, iswildcard ? "TRUE" : "FALSE", err);
42 do_lookup1( char *mapname, char *key, char *subdir, char *mapopts, char *path, uint_t isdirect, uid_t uid, autofs_action_t *action, struct linka *linkp) argument
/illumos-gate/usr/src/common/ficl/ficlplatform/
H A Dpager.c105 int action; local
120 action = 0;
121 while (action == 0) {
126 action = 1;
130 action = 1;
134 action = 2;
141 if (action == 2)
/illumos-gate/usr/src/cmd/oamuser/lib/
H A Dvlogin.c55 char action; local
75 action = 'w';
86 action = let;
97 if (action == 'w')
99 else if (action == 'e')
/illumos-gate/usr/src/lib/extendedFILE/common/
H A DextendedFILE.c51 int action = -1; /* default signal */ local
70 * user specified action
82 action = signal;
85 if ((closed_fd = enable_extended_FILE_stdio(closed_fd, action)) == -1) {
/illumos-gate/usr/src/lib/libnisdb/
H A Ddb_log_entry.cc46 action = a;
65 switch (action) {
73 printf("action(%d): ", action);
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_notify.c171 * action FILE_ACTION_SUBDIR_CHANGED, we don't have
220 uint32_t action, char *fname)
224 ASSERT(FILE_ACTION_ADDED <= action &&
225 action <= FILE_ACTION_MODIFIED_STREAM);
235 action, namelen, fname))
308 smb_notify_event(smb_node_t *node, uint_t action, const char *name) argument
316 if (action == FILE_ACTION_RENAMED_OLD_NAME)
323 smb_notify_sr(sr, action, name);
393 smb_notify_sr(smb_request_t *sr, uint_t action, const char *name) argument
405 VERIFY(action < smb_notify_action_nel
219 smb_notify_encode_action(struct smb_request *sr, mbuf_chain_t *mbc, uint32_t action, char *fname) argument
[all...]

Completed in 103 milliseconds

1234567891011>>