Searched refs:sep (Results 1 - 25 of 229) sorted by relevance

12345678910

/illumos-gate/usr/src/lib/libpp/common/
H A Dpppragma.c33 register int sep = 0; local
39 sep = 1;
43 if (sep)
45 sep = 0;
52 if (sep)
55 sep = 1;
60 if (sep || pass)
/illumos-gate/usr/src/uts/common/io/sfxge/
H A Dsfxge_ev.c74 _sfxge_ev_qctor(sfxge_t *sp, sfxge_evq_t *sep, int kmflags, uint16_t evq_size) argument
76 efsys_mem_t *esmp = &(sep->se_mem);
81 EFX_STATIC_ASSERT(sizeof (sep->__se_u1.__se_s1) <=
82 sizeof (sep->__se_u1.__se_pad));
83 EFX_STATIC_ASSERT(sizeof (sep->__se_u2.__se_s2) <=
84 sizeof (sep->__se_u2.__se_pad));
85 EFX_STATIC_ASSERT(sizeof (sep->__se_u3.__se_s3) <=
86 sizeof (sep->__se_u3.__se_pad));
88 bzero(sep, sizeof (sfxge_evq_t));
90 sep
135 sfxge_evq_t *sep = buf; local
143 sfxge_evq_t *sep = buf; local
148 _sfxge_ev_qdtor(sfxge_t *sp, sfxge_evq_t *sep, uint16_t evq_size) argument
170 sfxge_evq_t *sep = buf; local
178 sfxge_evq_t *sep = buf; local
186 sfxge_evq_t *sep = arg; local
204 sfxge_ev_qcomplete(sfxge_evq_t *sep, boolean_t eop) argument
240 sfxge_evq_t *sep = arg; local
327 sfxge_evq_t *sep = arg; local
351 sfxge_evq_t *sep_targetq, *sep = arg; local
391 sfxge_evq_t *sep_targetq, *sep = arg; local
431 sfxge_evq_t *sep = arg; local
475 sfxge_evq_t *sep = arg; local
514 sfxge_evq_t *sep = arg; local
624 sfxge_evq_t *sep = arg; local
635 sfxge_evq_t *sep = ksp->ks_private; local
666 sfxge_ev_kstat_init(sfxge_evq_t *sep) argument
715 sfxge_ev_kstat_fini(sfxge_evq_t *sep) argument
733 sfxge_evq_t *sep; local
781 sfxge_evq_t *sep = sp->s_sep[index]; local
897 sfxge_evq_t *sep = sp->s_sep[index]; local
963 sfxge_evq_t *sep = sp->s_sep[index]; local
995 sfxge_evq_t *sep = sp->s_sep[index]; local
1006 sfxge_evq_t *sep = sp->s_sep[index]; local
1039 sfxge_evq_t *sep = sp->s_sep[index]; local
1061 sfxge_evq_t *sep = sp->s_sep[evq]; local
1113 sfxge_evq_t *sep = sp->s_sep[evq]; local
[all...]
/illumos-gate/usr/src/ucbcmd/groups/
H A Dgroups.c36 char *sep = ""; local
58 (void) printf("%s%u", sep, groups[i]);
59 sep = " ";
62 (void) printf("%s%s", sep, gr->gr_name);
63 sep = " ";
76 char *sep = ""; local
91 (void) printf("%s%s", sep, gr->gr_name);
92 sep = " ";
99 (void) printf("%s%s", sep, gr->gr_name);
100 sep
[all...]
/illumos-gate/usr/src/lib/libast/common/path/
H A Dpathaccess.c41 int sep = ':'; local
46 dirs = pathcat(path, dirs, sep, a, b);
53 sep = 0;
H A Dpathcat.c33 pathcat(char* path, register const char* dirs, int sep, const char* a, register const char* b) argument
38 while (*dirs && *dirs != sep)
/illumos-gate/usr/src/cmd/lp/lib/lp/
H A Dprintlist.c59 printlist_setup(char *prefix, char *suffix, char *sep, char *newline) argument
65 if (sep)
66 print_sep = sep;
95 register char *sep; local
98 for (sep = ""; *list; *list++, sep = print_sep) {
100 (void)fdprintf (fd, "%s%s", sep, NB(print_prefix));
118 q_print(int fd, char *str, char *sep) argument
121 if (strchr(sep, *str))
H A Dgetlist.c70 *sep, local
86 * Construct in "sep" the full list of characters that
92 if (!(sep = Malloc(len))) {
97 sep = buf;
98 strcpy (sep, hardsep);
99 strcat (sep, ws);
134 if (strchr(sep, c)) {
167 if (strchr(sep, c)) {
170 list[n++] = unq_strdup(copy, sep);
185 list[n++] = unq_strdup(copy, sep);
[all...]
/illumos-gate/usr/src/boot/lib/libc/string/
H A Dstrtok.c113 char *brkb, *brkt, *phrase, *sep, *word; local
115 sep = "\\/:;=-";
120 for (word = strtok(test, sep); word; word = strtok(NULL, sep))
124 for (word = strtok_r(test, sep, &brkt); word;
125 word = strtok_r(NULL, sep, &brkt)) {
128 for (phrase = strtok_r(blah, sep, &brkb); phrase;
129 phrase = strtok_r(NULL, sep, &brkb))
/illumos-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_serd.c168 fmd_serd_eng_discard(fmd_serd_eng_t *sgp, fmd_serd_elem_t *sep) argument
170 fmd_list_delete(&sgp->sg_list, sep);
173 fmd_event_rele(sep->se_event);
174 fmd_free(sep, sizeof (fmd_serd_elem_t));
180 fmd_serd_elem_t *sep; local
182 for (sep = fmd_list_next(&sgp->sg_list);
183 sep != NULL; sep = fmd_list_next(sep)) {
184 if (fmd_event_equal(sep
194 fmd_serd_elem_t *sep, *oep; local
258 fmd_serd_elem_t *sep, *nep; local
280 fmd_serd_elem_t *sep; local
[all...]
H A Dfmd_dr.c72 fmd_dr_event(sysevent_t *sep) argument
76 const char *class = sysevent_get_class_name(sep);
77 const char *subclass = sysevent_get_subclass_name(sep);
123 sysevent_get_time(sep, &evtime);
136 TRACE((FMD_DBG_XPRT, "dr event %p, gen=%llu", (void *)sep, gen));
/illumos-gate/usr/src/cmd/fs.d/nfs/nfslog/
H A Dbuffer_list.c107 struct sharepnt_ent *se_tail = NULL, *sep; local
136 if (sep = findsharepnt(bep->be_sharepnt,
142 sep->se_state = lep->le_state;
147 sep = (struct sharepnt_ent *)
148 malloc(sizeof (*sep));
149 if (sep == NULL) {
153 (void) memset(sep, 0, sizeof (*sep));
155 sep->se_name = strdup(lep->le_path);
156 if (sep
303 remove_sharepnt_ent(struct sharepnt_ent **se_listpp, struct sharepnt_ent *sep) argument
321 free_sharepnt_ent(struct sharepnt_ent *sep) argument
343 print_sharepnt_list(struct sharepnt_ent *sep) argument
369 findsharepnt( struct sharepnt_ent *sep, char *name, struct sharepnt_ent **se_tail) argument
[all...]
/illumos-gate/usr/src/cmd/lockstat/
H A Dsym.c69 syment_t *sep; local
73 symbol_table = realloc(symbol_table, maxsyms * sizeof (*sep));
79 sep = &symbol_table[nsyms++];
81 sep->name = name;
82 sep->addr = addr;
83 sep->size = size;
90 syment_t *sep = symbol_table; local
92 for (i = 0; i < nsyms; i++, sep++)
93 if (sep->addr == addr)
94 sep
211 syment_t *sep; local
231 syment_t *sep = symbol_table; local
245 syment_t *sep = symbol_table; local
[all...]
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_target.c753 mdb_tgt_sespec_prune_one(mdb_tgt_t *t, mdb_sespec_t *sep) argument
757 for (vep = mdb_list_next(&sep->se_velist); vep; vep = nvep) {
775 mdb_sespec_t *sep, *nsep; local
777 for (sep = mdb_list_next(&t->t_active); sep != NULL; sep = nsep) {
778 nsep = mdb_list_next(sep);
779 mdb_tgt_sespec_prune_one(t, sep);
788 mdb_tgt_sespec_idle_one(mdb_tgt_t *t, mdb_sespec_t *sep, int reason) argument
790 ASSERT(sep
814 mdb_sespec_t *sep, *nsep; local
854 mdb_tgt_sespec_activate_one(mdb_tgt_t *t, mdb_sespec_t *sep) argument
942 mdb_sespec_t *sep, *nsep; local
962 mdb_tgt_sespec_arm_one(mdb_tgt_t *t, mdb_sespec_t *sep) argument
985 mdb_sespec_t *sep, *nsep; local
1002 mdb_sespec_t *sep; local
1028 mdb_sespec_t *sep; local
1063 mdb_sespec_t *sep, *nsep, *matched; local
1319 mdb_sespec_t *sep; local
1450 mdb_sespec_t *sep; local
1501 mdb_sespec_t *sep; local
1652 mdb_sespec_t *sep; local
1981 mdb_tgt_sespec_hold(mdb_tgt_t *t, mdb_sespec_t *sep) argument
1988 mdb_tgt_sespec_rele(mdb_tgt_t *t, mdb_sespec_t *sep) argument
2009 mdb_sespec_t *sep = mdb_zalloc(sizeof (mdb_sespec_t), UM_SLEEP); local
2024 mdb_sespec_t *sep; local
2037 mdb_sespec_t *sep; local
2099 mdb_sespec_t *sep; local
2198 mdb_sespec_t *sep; local
2239 no_se_dtor(mdb_tgt_t *t, mdb_sespec_t *sep) argument
2246 no_se_secmp(mdb_tgt_t *t, mdb_sespec_t *sep, void *args) argument
2260 no_se_arm(mdb_tgt_t *t, mdb_sespec_t *sep) argument
2267 no_se_disarm(mdb_tgt_t *t, mdb_sespec_t *sep) argument
2274 no_se_cont(mdb_tgt_t *t, mdb_sespec_t *sep, mdb_tgt_status_t *tsp) argument
[all...]
/illumos-gate/usr/src/test/zfs-tests/cmd/chg_usr_exec/
H A Dchg_usr_exec.c41 char sep[] = " "; local
54 "%s%s", argv[i], sep);
55 len += strlen(argv[i]) + strlen(sep);
/illumos-gate/usr/src/cmd/refer/
H A Drefer6.c19 #define ifnl (macro? sep : ' ')
38 fprintf(fo, ".]-%c", sep);
45 fprintf(fo, "..%c", sep);
70 fprintf(fo, "%s%c", tx, sep);
73 lastype, tx, sep);
92 cch, sep, tx, sep);
95 cch, tx, sep);
105 fprintf(fo, "%s%c", tx, sep);
111 cch, sep, t
[all...]
/illumos-gate/usr/src/lib/libnsl/nss/
H A Dgetauthattr.c67 char *sep = KV_TOKEN_DELIMIT; local
87 auth->name = _strtok_escape(buffer, sep, &last);
88 auth->res1 = _strtok_escape(NULL, sep, &last);
89 auth->res2 = _strtok_escape(NULL, sep, &last);
90 auth->short_desc = _strtok_escape(NULL, sep, &last);
91 auth->long_desc = _strtok_escape(NULL, sep, &last);
92 auth->attr = _strtok_escape(NULL, sep, &last);
H A Dgetprofattr.c66 char *sep = KV_TOKEN_DELIMIT; local
85 prof->name = _strtok_escape(buffer, sep, &last);
86 prof->res1 = _strtok_escape(NULL, sep, &last);
87 prof->res2 = _strtok_escape(NULL, sep, &last);
88 prof->desc = _strtok_escape(NULL, sep, &last);
89 prof->attr = _strtok_escape(NULL, sep, &last);
H A Dgetuserattr.c74 char *sep = KV_TOKEN_DELIMIT; local
95 user->name = _strtok_escape(buffer, sep, &last);
96 user->qualifier = _strtok_escape(NULL, sep, &last);
97 user->res1 = _strtok_escape(NULL, sep, &last);
98 user->res2 = _strtok_escape(NULL, sep, &last);
99 user->attr = _strtok_escape(NULL, sep, &last);
/illumos-gate/usr/src/uts/common/fs/smbclnt/smbfs/
H A Dsmbfs_subr.c70 const char *name, int nmlen, u_int8_t sep)
93 if (dnp->n_rplen <= 1 && sep == '\\')
94 sep = 0;
108 sep = 0;
110 if (sep) {
113 error = mb_put_uint16le(mbp, sep);
115 error = mb_put_uint8(mbp, sep);
69 smbfs_fullpath(struct mbchain *mbp, struct smb_vc *vcp, struct smbnode *dnp, const char *name, int nmlen, u_int8_t sep) argument
/illumos-gate/usr/src/cmd/lp/lib/filters/
H A Ddumpfilters.c58 *sep; local
97 sep = "";
100 (void)fdprintf(fd, "%s%s", sep,
102 sep = ",";
116 sep = "";
119 (void)fdprintf(fd, "%s%s ", sep,
124 sep = ",";
/illumos-gate/usr/src/cmd/syseventadm/
H A Dsyseventadm.c521 serecord_t *sep; local
534 sep = parse_line(line);
535 if (sep != NULL) {
536 if (matches_serecord(sep)) {
537 print_serecord(stdout, sep);
540 free_serecord(sep);
557 serecord_t *sep; local
603 sep = parse_line(line);
604 if (sep == NULL) {
607 if (!matches_serecord(sep)) {
658 serecord_t *sep; local
681 matches_serecord(serecord_t *sep) argument
735 print_serecord(FILE *fp, serecord_t *sep) argument
820 serecord_t *sep; local
869 free_serecord(serecord_t *sep) argument
[all...]
/illumos-gate/usr/src/cmd/syseventd/modules/sysevent_conf_mod/
H A Dsysevent_conf_mod.c504 syseventtab_t *sep; local
623 if ((sep = sc_malloc(sizeof (syseventtab_t))) == NULL)
626 sep->se_conf_file = conf_file;
627 sep->se_lineno = lineno;
628 sep->se_vendor = sc_strdup(vendor);
629 sep->se_publisher = sc_strdup(publisher);
630 sep->se_class = sc_strdup(class);
631 sep->se_subclass = sc_strdup(subclass);
632 sep->se_user = sc_strdup(user);
634 sep
873 syseventtab_t *sep; local
1056 find_macro_definition(sysevent_t *ev, nvlist_t *nvlist, syseventtab_t *sep, char *token, sysevent_hdr_info_t *hdr) argument
1414 expand_macros(sysevent_t *ev, nvlist_t *nvlist, syseventtab_t *sep, str_t *line, sysevent_hdr_info_t *hdr) argument
1658 queue_event(sysevent_t *ev, syseventtab_t *sep, sysevent_hdr_info_t *hdr) argument
2018 syseventtab_t *sep; local
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/pppoe/
H A Doptions.c229 struct service_entry *sep; local
241 sep = &slp->sl_entry;
247 if (sep->se_flags & SEF_CFLIST) {
248 sep->se_flist = fep = NULL;
250 for (fep = sep->se_flist; fep != NULL; fep = fep->fe_prev)
269 sep->se_flist = fep =
271 sep->se_flags |= SEF_CFLIST;
289 sep->se_flags |= SEF_CDEV;
293 sep->se_flist = fep = sedefp->se_flist;
294 sep
1837 allow_service(const struct service_entry *sep, const ppptun_atype *pap) argument
1894 const struct service_entry *sep; local
2074 const struct service_entry *sep = (const struct service_entry *)srvp; local
2276 const struct service_entry *sep, **sepp; local
[all...]
/illumos-gate/usr/src/lib/libcmd/common/
H A Duniq.c90 int reclen,oreclen= -1,count=0,cwidth=0,sep,next; local
219 sep = 0;
222 sep = all && *all > 0;
227 if(outsize < n+cwidth+sep)
231 if(!(sbufp = outp=fmtbuf(outsize=n+cwidth+sep)))
235 outsize = n+cwidth+sep;
236 memcpy(outp+cwidth+sep,bufp,n);
237 if(sep)
240 orecp = outp+cwidth+sep + (cp-bufp);
253 int sep; local
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dfindstack.c201 stacks_hash_entry(stacks_entry_t *sep) argument
203 size_t depth = sep->se_depth;
204 uintptr_t *stack = sep->se_stack;
377 stacks_entry_t **sepp, *nsep, *sep; local
405 (sep = *sepp) != NULL;
406 sepp = &sep->se_next) {
408 if (stacks_entry_comp_impl(sep, nsep, 0) != 0)
411 nsep->se_dup = sep->se_dup;
412 sep->se_dup = nsep;
413 sep
492 stacks_entry_t *sep; local
519 stacks_has_caller(stacks_entry_t *sep, uintptr_t addr) argument
542 stacks_has_module(stacks_entry_t *sep, stacks_module_t *mp) argument
757 stacks_entry_t *sep = stacks_array[idx]; local
[all...]

Completed in 109 milliseconds

12345678910