/illumos-gate/usr/src/cmd/lp/lib/papi/ |
H A D | lpsched-service.c | 34 #include "form.h" 40 FORM form; local 42 while (getform(NAME_ALL, &form, (FALERT *)0, (FILE **)0) != -1) { 44 "form-supported", form.name); 45 freeform(&form);
|
H A D | lpsched-printers.c | 259 "form-supported", f_allowed); 268 "form-supported", "all"); 311 printer_status_to_attributes(printer_t *p, char *printer, char *form, argument 320 "form-ready", form);
|
H A D | lpsched-jobs.c | 65 char *mapped_keys[] = { "copies", "document-format", "form", 102 /* set the requested form to print on */ 103 papiAttributeListGetLPString(attributes, "form", &r->form); 405 /* form */ 407 "form", r->form); 472 char *form, char *charset, short rank, char *file) 501 "form", form); 470 job_status_to_attributes(job_t *job, char *req_id, char *user, char *slabel, size_t size, time_t date, short state, char *destination, char *form, char *charset, short rank, char *file) argument [all...] |
/illumos-gate/usr/src/lib/libbc/libc/gen/common/ |
H A D | strtod.c | 42 enum decimal_string_form form; local 45 string_to_decimal(&cp, MAXINT, 0, &dr, &form, &pechar); 48 if (form == invalid_form)
|
/illumos-gate/usr/src/lib/libast/common/sfio/ |
H A D | sfprintf.c | 30 int sfprintf(Sfio_t* f, const char* form, ...) argument 40 va_start(args,form); 43 reg char* form; local 46 form = va_arg(args,char*); 48 rv = sfvprintf(f,form,args); 55 ssize_t sfvsprintf(char* s, size_t n, const char* form, va_list args) argument 57 ssize_t sfvsprintf(s, n, form, args) 60 char* form; 72 if((rv = sfvprintf(f,form,args)) >= 0 ) 90 ssize_t sfsprintf(char* s, size_t n, const char* form, argument 104 reg char* form; local [all...] |
H A D | sfscanf.c | 30 int sfscanf(Sfio_t* f, const char* form, ...) argument 40 va_start(args,form); 43 reg char* form; local 46 form = va_arg(args,char*); 49 rv = (f && form) ? sfvscanf(f,form,args) : -1; 55 int sfvsscanf(const char* s, const char* form, va_list args) argument 57 int sfvsscanf(s, form, args) 59 char* form; 65 if(!s || !form) 81 sfsscanf(const char* s, const char* form,...) argument 93 reg char* form; local [all...] |
H A D | sfprints.c | 32 char* sfvprints(const char* form, va_list args) argument 34 char* sfvprints(form, args) 35 char* form; 49 rv = sfvprintf(f,form,args); 59 char* sfprints(const char* form, ...) argument 69 va_start(args,form); 71 char *form; local 73 form = va_arg(args,char*); 75 s = sfvprints(form, args); 82 ssize_t sfvaprints(char** sp, const char* form, va_lis argument 104 sfaprints(char** sp, const char* form, ...) argument 116 char **sp, *form; local [all...] |
H A D | sftable.c | 45 static Fmtpos_t* sffmtpos(Sfio_t* f,const char* form,va_list args,Sffmt_t* ft,int type) argument 47 static Fmtpos_t* sffmtpos(f,form,args,ft,type) 49 char* form; 68 else if(!(fp = sffmtpos(f,form,args,ft,-1)) ) 73 while((n = *form) ) 75 { sp = (char*)form; 77 { form += SFMBLEN(form, &fmbs); 78 if(*form == 0 || *form [all...] |
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | strtod.c | 49 enum decimal_string_form form; local 54 string_to_decimal((char **)&cp, MAXINT, lc, &dr, &form, &pechar); 57 if (form == invalid_form) 66 if ((int)form < 0) 82 enum decimal_string_form form; local 85 string_to_decimal((char **)&cp, MAXINT, -1, &dr, &form, &pechar); 88 if (form == invalid_form) 97 if ((int)form < 0) 113 enum decimal_string_form form; local 116 string_to_decimal((char **)&cp, MAXINT, -1, &dr, &form, [all...] |
/illumos-gate/usr/src/cmd/lp/lib/access/ |
H A D | allowed.c | 100 char * form 103 is_user_allowed_form (user, form) 105 *form; 111 if (loadaccess(Lp_A_Forms, form, "", &allow, &deny) == -1) 149 char * form, 153 is_form_allowed_printer (form, printer) 154 char *form, 164 return (allowed(form, allow, deny)); 148 is_form_allowed_printer( char * form, char * printer ) argument
|
H A D | change.c | 49 deny_user_form(char **user_list, char *form) argument 51 return (chgaccess(0, user_list, form, Lp_A_Forms, "")); 59 allow_user_form(char **user_list, char *form) argument 61 return (chgaccess(1, user_list, form, Lp_A_Forms, ""));
|
H A D | loadaccess.c | 49 load_userform_access(char *form, char ***pallow, char ***pdeny) argument 51 return (loadaccess(Lp_A_Forms, form, "", pallow, pdeny));
|
/illumos-gate/usr/src/lib/libc/port/fp/ |
H A D | char_to_decimal.h | 94 #define NZDIGIT(c) (('1' <= c && c <= '9') || ((int)form < 0 && \ 111 enum decimal_string_form form; variable in typeref:enum:decimal_string_form 130 *pform = form = invalid_form; 146 form = whitespace_form; 173 form = fixed_int_form; 201 /* assume hex fp form */ 202 form = (enum decimal_string_form)-1; 221 form = fixed_int_form; 226 form = fixed_int_form; 229 form [all...] |
/illumos-gate/usr/src/lib/libc/port/i18n/ |
H A D | wstod.c | 61 int form; local 63 wstring_to_decimal(&cp, __xpg6 & _C99SUSv3_recognize_hexfp, &dr, &form); 66 if (form == 0) 75 if (form < 0) 91 int form; local 93 wstring_to_decimal(&cp, 1, &dr, &form); 96 if (form == 0) 105 if (form < 0) 121 int form; local 123 wstring_to_decimal(&cp, 1, &dr, &form); 202 int form; local [all...] |
/illumos-gate/usr/src/cmd/tbl/ |
H A D | t8.c | 40 int c, lf, ct, form, lwid, vspf, ip = -1, cmidx, exvspen, vforml; local 134 form= ctype(vforml,c); 135 if (form != 's') 138 if (form=='a') ct = c+CMID; 139 if (form=='n' && table[nl][c].rcol && lused[c]==0) ct= c+CMID; 173 form=1; 177 form=3; break; 179 form=2; break; 181 form=1; break; 193 /* form [all...] |
/illumos-gate/usr/src/tools/ctf/dwarf/common/ |
H A D | dwarf_abbrev.c | 199 Dwarf_Signed * form, 252 if (form != NULL) 253 *form = attr_form; 196 dwarf_get_abbrev_entry(Dwarf_Abbrev abbrev, Dwarf_Signed index, Dwarf_Half * returned_attr_num, Dwarf_Signed * form, Dwarf_Off * offset, Dwarf_Error * error) argument
|
H A D | dwarf_form.c | 46 Dwarf_Half form, 67 *return_bool = (attr->ar_attribute_form == form); 213 the form. 246 DW_FORM_ref_addr is considered an incorrect form 551 sec 6.5.4 where it describes the reference form. It is 45 dwarf_hasform(Dwarf_Attribute attr, Dwarf_Half form, Dwarf_Bool * return_bool, Dwarf_Error * error) argument
|
H A D | pro_forms.c | 71 Dwarf_Signed form, 164 Dwarf_Signed form, 193 new_attr->ar_attribute_form = form; 770 /* Is uleb number form, DW_FORM_block. See above. */ 161 local_add_AT_address(Dwarf_P_Debug dbg, Dwarf_P_Die ownerdie, Dwarf_Half attr, Dwarf_Signed form, Dwarf_Unsigned pc_value, Dwarf_Unsigned sym_index, Dwarf_Error * error) argument
|
/illumos-gate/usr/src/uts/common/io/ixgbe/ |
H A D | ixgbe_debug.c | 153 char form[25]; local 155 (void) sprintf(form, "%02x:%02x:%02x:%02x:%02x:%02x", 159 ixgbe_log(ixgbe, "%s %s\n", tag, form);
|
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/ |
H A D | disp3.c | 41 if (pps->forms && (pps->forms[trayNum].form == pfs)) { 50 * Unmount the old form. 52 if (pps->forms && pps->forms[trayNum].form) { 53 register FSTATUS *Opfs = pps->forms[trayNum].form; 55 pps->forms[trayNum].form = 0; 60 * Unmounting the form may make some print requests 62 * only because the form was already mounted. 63 * Unmounting the form will also force some requests 64 * to another printer (where the form is mounted) 77 * Mount the new form 291 char *printer, *form, *pwheel_name; local 337 char *printer, *form, *pwheel_name; local 391 *form, local 441 *form, local 489 char *form; local 597 char *form; local [all...] |
H A D | schedule.c | 46 FSTATUS * form; member in union:later::arg 248 pl->arg.form = va_arg(ap, FSTATUS *); 296 schedule (pl->event, pl->arg.form); 378 (pfs && pfs->form && pfs->form->name ? pfs->form->name : "NULL"), 396 (pfs && pfs->form && pfs->form->name ? 397 pfs->form->name : "NULL")); 403 if (prs->form [all...] |
/illumos-gate/usr/src/lib/libeti/form/common/ |
H A D | form.c | 41 /* default form */ 111 /* sort_form - sort fields on form(per page) */ 140 merge(FIELD *f, FORM *form) /* adjust form dimensions to include field f */ argument 145 if (form->rows < ymax) 146 form->rows = ymax; 147 if (form->cols < xmax) 148 form->cols = xmax; 151 /* disconnect_fields - disconnect fields from form */ 153 disconnect_fields(FORM *form) argument [all...] |
/illumos-gate/usr/src/lib/libxcurses/src/tabs/ |
H A D | tabs.c | 117 static int form = NO_FORM; variable 197 if (form != NO_FORM) 199 form = T_FORM; 225 if (form != NO_FORM) 227 form = N_FORM; 237 form = P_FORM; 258 if (form == NO_FORM) { 261 form = N_FORM; 264 form = P_FORM; 319 switch (form) { [all...] |
/illumos-gate/usr/src/lib/libbc/libc/stdio/common/ |
H A D | doscan.c | 245 enum decimal_string_form form; local 254 file_to_decimal(&nb, len, 0, &dr, &form, &echar, iop, &nread); 255 if (stow && (form != invalid_form)) { 287 return ((form == invalid_form) ? 0 : 1); /* successful match if
|
/illumos-gate/usr/src/cmd/lp/include/ |
H A D | requests.h | 73 char *form; /* preprinted form to print on */ member in struct:REQUEST
|