Home
last modified time | relevance | path

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

/titanic_50/usr/src/cmd/ldap/common/
H A Dtmpltest.c118 struct ldap_tmplitem *rowp, *colp; in dump_tmpl() local
203 for ( colp = ldap_first_tmplcol( tmpl, rowp ); colp != NULLTMPLITEM; in dump_tmpl()
204 colp = ldap_next_tmplcol( tmpl, rowp, colp )) { in dump_tmpl()
207 syn_name[ colp->ti_syntaxid & 0x0000FFFF ], in dump_tmpl()
208 syn_type[ LDAP_GET_SYN_TYPE( colp->ti_syntaxid ) >> 24 ], in dump_tmpl()
209 (( LDAP_GET_SYN_OPTIONS( colp->ti_syntaxid ) & in dump_tmpl()
213 if ( LDAP_IS_TMPLITEM_OPTION_SET( colp, item_opt_vals[ i ] )) { in dump_tmpl()
218 printf( "), %s, %s", NULLSTRINGIFNULL( colp->ti_attrname ), in dump_tmpl()
219 NULLSTRINGIFNULL( colp->ti_label )); in dump_tmpl()
220 if ( colp->ti_args != NULL ) { in dump_tmpl()
[all …]
/titanic_50/usr/src/cmd/mailx/
H A Dlist.c369 register struct coltab *colp; in markall() local
372 for (colp = &coltab[0]; colp->co_char; colp++) in markall()
373 if (colp->co_bit & colmod) in markall()
374 if ((mp->m_flag & colp->co_mask) in markall()
375 != colp->co_equal) in markall()
383 register struct coltab *colp; in markall() local
386 for (colp = &coltab[0]; colp->co_char; colp++) in markall()
387 if (colp->co_bit & colmod) in markall()
388 printf(" :%c", colp->co_char); in markall()
403 register struct coltab *colp; in evalcol() local
[all …]
/titanic_50/usr/src/lib/libldap5/sources/ldap/common/
H A Dtmplout.c156 struct ldap_tmplitem *rowp, *colp; in do_entry2text() local
305 for ( colp = ldap_first_tmplcol( tmpl, rowp ); colp != NULLTMPLITEM; in do_entry2text()
306 colp = ldap_next_tmplcol( tmpl, rowp, colp )) { in do_entry2text()
308 if ( colp->ti_attrname == NULL || ( vals = ldap_get_values( ld, in do_entry2text()
309 entry, colp->ti_attrname )) == NULL ) { in do_entry2text()
311 if ( !LDAP_IS_TMPLITEM_OPTION_SET( colp, in do_entry2text()
313 && colp->ti_attrname != NULL ) { in do_entry2text()
315 if ( strcasecmp( colp->ti_attrname, defattrs[ i ] ) in do_entry2text()
326 if ( LDAP_IS_TMPLITEM_OPTION_SET( colp, in do_entry2text()
338 if ( show && LDAP_GET_SYN_TYPE( colp->ti_syntaxid ) in do_entry2text()
[all …]
H A Ddisptmpl.c262 struct ldap_tmplitem *rowp, *nextrowp, *colp, *nextcolp; in free_disptmpl() local
266 for ( colp = rowp; colp != NULL; colp = nextcolp ) { in free_disptmpl()
267 nextcolp = colp->ti_next_in_row; in free_disptmpl()
268 if ( colp->ti_attrname != NULL ) { in free_disptmpl()
269 NSLDAPI_FREE( colp->ti_attrname ); in free_disptmpl()
271 if ( colp->ti_label != NULL ) { in free_disptmpl()
272 NSLDAPI_FREE( colp->ti_label ); in free_disptmpl()
274 if ( colp->ti_args != NULL ) { in free_disptmpl()
275 ldap_free_strarray( colp->ti_args ); in free_disptmpl()
277 NSLDAPI_FREE( colp ); in free_disptmpl()
/titanic_50/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.c137 char *colp; in normchar() local
170 colp = "({)}!|^~'`"; in normchar()
171 while (*colp++) in normchar()
172 if (c == *colp++) { in normchar()
174 c = colp[-2]; in normchar()
/titanic_50/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 …]
/titanic_50/usr/src/common/mc/mc-amd/
H A Dmcamd_rowcol.c348 uint64_t iaddr, uint32_t *rowp, uint32_t *colp, uint32_t *bankp) in iaddr_to_rcb() argument
361 *colp = iaddr_to_col(hdl, bamp, rcbmp, iaddr); in iaddr_to_rcb()
/titanic_50/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()
/titanic_50/usr/src/cmd/svc/svcs/
H A Dsvcs.c1974 const struct column * const colp = &columns[opt_columns[i]]; in print_header() local
1976 (void) snprintf(cp, colp->width + 1, "%-*s", colp->width, in print_header()
1977 colp->name); in print_header()
1978 cp += colp->width; in print_header()