Home
last modified time | relevance | path

Searched refs:colp (Results 1 – 10 of 10) sorted by relevance

/illumos-gate/usr/src/cmd/ldap/common/
H A Dtmpltest.c117 struct ldap_tmplitem *rowp, *colp; in dump_tmpl() local
202 for ( colp = ldap_first_tmplcol( tmpl, rowp ); colp != NULLTMPLITEM; in dump_tmpl()
203 colp = ldap_next_tmplcol( tmpl, rowp, colp )) { in dump_tmpl()
206 syn_name[ colp->ti_syntaxid & 0x0000FFFF ], in dump_tmpl()
207 syn_type[ LDAP_GET_SYN_TYPE( colp->ti_syntaxid ) >> 24 ], in dump_tmpl()
208 (( LDAP_GET_SYN_OPTIONS( colp->ti_syntaxid ) & in dump_tmpl()
217 printf( "), %s, %s", NULLSTRINGIFNULL( colp->ti_attrname ), in dump_tmpl()
218 NULLSTRINGIFNULL( colp->ti_label )); in dump_tmpl()
219 if ( colp->ti_args != NULL ) { in dump_tmpl()
221 for ( i = 0; colp->ti_args[ i ] != NULL; ++i ) { in dump_tmpl()
[all …]
/illumos-gate/usr/src/cmd/mailx/
H A Dlist.c368 struct coltab *colp; in markall() local
371 for (colp = &coltab[0]; colp->co_char; colp++) in markall()
372 if (colp->co_bit & colmod) in markall()
374 != colp->co_equal) in markall()
382 struct coltab *colp; in markall() local
385 for (colp = &coltab[0]; colp->co_char; colp++) in markall()
386 if (colp->co_bit & colmod) in markall()
402 struct coltab *colp; in evalcol() local
406 for (colp = &coltab[0]; colp->co_char; colp++) in evalcol()
407 if (colp->co_char == col) in evalcol()
[all …]
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dtmplout.c154 struct ldap_tmplitem *rowp, *colp; in do_entry2text() local
303 for ( colp = ldap_first_tmplcol( tmpl, rowp ); colp != NULLTMPLITEM; in do_entry2text()
304 colp = ldap_next_tmplcol( tmpl, rowp, colp )) { in do_entry2text()
307 entry, colp->ti_attrname )) == NULL ) { in do_entry2text()
309 if ( !LDAP_IS_TMPLITEM_OPTION_SET( colp, in do_entry2text()
311 && colp->ti_attrname != NULL ) { in do_entry2text()
324 if ( LDAP_IS_TMPLITEM_OPTION_SET( colp, in do_entry2text()
338 colp, LDAP_DITEM_OPT_HIDEIFFALSE ) && in do_entry2text()
789 struct ldap_tmplitem *rowp, *colp; in max_label_len() local
796 for ( colp = ldap_first_tmplcol( tmpl, rowp ); colp != NULLTMPLITEM; in max_label_len()
[all …]
H A Ddisptmpl.c259 struct ldap_tmplitem *rowp, *nextrowp, *colp, *nextcolp; in free_disptmpl() local
263 for ( colp = rowp; colp != NULL; colp = nextcolp ) { in free_disptmpl()
264 nextcolp = colp->ti_next_in_row; in free_disptmpl()
265 if ( colp->ti_attrname != NULL ) { in free_disptmpl()
266 NSLDAPI_FREE( colp->ti_attrname ); in free_disptmpl()
268 if ( colp->ti_label != NULL ) { in free_disptmpl()
269 NSLDAPI_FREE( colp->ti_label ); in free_disptmpl()
271 if ( colp->ti_args != NULL ) { in free_disptmpl()
272 ldap_free_strarray( colp->ti_args ); in free_disptmpl()
274 NSLDAPI_FREE( colp ); in free_disptmpl()
/illumos-gate/usr/src/cmd/vi/port/
H A Dex_vget.c98 unsigned char *colp; in getbr() local
176 colp = (unsigned char *)"({)}!|^~'~"; in getbr()
177 while (d = *colp++) in getbr()
179 d = *colp++; in getbr()
182 colp++; in getbr()
H A Dex_put.c136 char *colp; in normchar() local
169 colp = "({)}!|^~'`"; in normchar()
170 while (*colp++) in normchar()
171 if (c == *colp++) { in normchar()
173 c = colp[-2]; in normchar()
/illumos-gate/usr/src/lib/libpicltree/
H A Dpicltree.c926 picl_obj_t *colp; in piclize_table() local
929 for (colp = rowp; colp != NULL; colp = colp->next_row) in piclize_table()
930 piclize_obj(colp); in piclize_table()
989 picl_obj_t *colp; in unpiclize_table() local
992 for (colp = rowp; colp != NULL; colp = colp->next_row) in unpiclize_table()
993 unpiclize_obj(colp); in unpiclize_table()
1346 picl_obj_t *colp; in destroy_table() local
1359 colp = rowp; in destroy_table()
1361 while (colp != NULL) { in destroy_table()
1362 freep = colp; in destroy_table()
[all …]
/illumos-gate/usr/src/common/mc/mc-amd/
H A Dmcamd_rowcol.c350 uint64_t iaddr, uint32_t *rowp, uint32_t *colp, uint32_t *bankp) in iaddr_to_rcb() argument
363 *colp = iaddr_to_col(hdl, bamp, rcbmp, iaddr); in iaddr_to_rcb()
/illumos-gate/usr/src/cmd/audio/audioctl/
H A Daudioctl.c385 print_control_line(FILE *sfp, col_prt_t *colp, int vopt) in print_control_line() argument
417 colstr = *(char **)(((size_t)colp) + col_prtp[i]); in print_control_line()
/illumos-gate/usr/src/cmd/svc/svcs/
H A Dsvcs.c1965 const struct column * const colp = &columns[opt_columns[i]]; in print_header() local
1967 (void) snprintf(cp, colp->width + 1, "%-*s", colp->width, in print_header()
1968 colp->name); in print_header()
1969 cp += colp->width; in print_header()