Searched refs:format (Results 301 - 325 of 583) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/lib/libc/port/gen/
H A Dwalkstack.c329 async_filenoprintf(int filenum, const char *format, ...) argument
334 va_start(ap, format);
335 (void) vsnprintf(buffer, sizeof (buffer), format, ap);
434 * format backtrace string
/illumos-gate/usr/src/lib/cfgadm_plugins/ib/common/
H A Dcfga_rcm.c267 static char format[MAX_FORMAT]; local
378 /* Construct the format string */
379 (void) snprintf(format, MAX_FORMAT, "%%-%ds %%-%ds",
387 format, rcm_info_rsrc(tuple), infostr);
/illumos-gate/usr/src/cmd/refer/
H A Drefer5.c47 char t[100], t1[MXSIG], t2[100], format[10], *sd, *stline; local
69 sprintf(format,
72 /* format is %s%s for default labels */
86 sprintf(t, format, t1, sd);
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_pservice.c218 ps_plog(const char *format, ...) argument
222 va_start(alist, format);
223 mdb_dvprintf(MDB_DBG_PSVC, format, alist);
/illumos-gate/usr/src/cmd/fm/fmdump/common/
H A Dscheme.c198 "format fmri: %s\n", name, msg ? msg : "unknown error");
206 fmdump_warn("cannot format fmri using scheme '%s'", name);
295 fmd_fmri_warn(const char *format, ...) argument
299 va_start(ap, format);
300 fmdump_vwarn(format, ap);
/illumos-gate/usr/src/cmd/sgs/error/common/
H A Derrorsubr.c63 error(char *format, ...) argument
67 va_start(args, format);
69 (void) vfprintf(stderr, format, args);
178 * parse a string that is the result of a format %s(%d)
179 * return TRUE if this is of the proper format
/illumos-gate/usr/src/cmd/audio/audioconvert/
H A Dmain.cc81 format_type ofmt = F_SUN; // output format type
82 format_type ifmt = F_SUN; // expected input format type
83 format_type fmt = F_SUN; // actual input format type
153 // save format string to parse later, but verify now
206 // for input format specs.
208 // new input format spec.
258 // to base the output format on - then create the output
259 // header w/the output format spec.
405 Err(char *format, ...) argument
409 va_start(ap, format);
[all...]
/illumos-gate/usr/src/cmd/cmd-crypto/pktool/
H A Dlist.c315 KMF_ENCODE_FORMAT format; local
404 format = KMF_FORMAT_RAWKEY;
406 KMF_ENCODE_FORMAT_ATTR, &format,
407 sizeof (format));
549 KMF_ENCODE_FORMAT format; local
599 format = KMF_FORMAT_RAWKEY;
601 KMF_ENCODE_FORMAT_ATTR, &format,
602 sizeof (format));
712 KMF_ENCODE_FORMAT format; local
768 format
[all...]
H A Dgencsr.c382 char *format = NULL; local
407 "K:(outkey)F:(format)E(listcurves)h:(hash)")) != EOF) {
488 if (format)
490 format = optarg_av;
598 if (format && (fmt = Str2Format(format)) == KMF_FORMAT_UNDEF) {
600 gettext("Error parsing format string (%s).\n"), format);
603 if (format && fmt != KMF_FORMAT_ASN1 && fmt != KMF_FORMAT_PEM) {
605 gettext("CSR must be DER or PEM format
[all...]
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Ddebug.c212 dbg_print(Lm_list *lml, const char *format, ...) argument
353 va_start(args, format);
354 (void) doprf(format, args, &prf);
/illumos-gate/usr/src/cmd/sgs/size/common/
H A Dprocess.c59 static const char *format[3] = { variable
71 extern int fflag; /* full format for sections */
72 extern int Fflag; /* full format for segments */
190 (void) printf(format[numbase],
309 (void) printf(format[numbase],
/illumos-gate/usr/src/cmd/sunpc/other/
H A Ddos2unix.c477 void error(format, args)
478 char *format;
482 fprintf(stderr, format, args);
H A Dunix2dos.c484 error(format, args)
485 char *format;
489 fprintf(stderr, format, args);
/illumos-gate/usr/src/uts/sun4v/io/
H A Dvdsk_common.c69 vd_efi_print(const char *format, ...) argument
73 va_start(args, format);
74 vcmn_err(CE_CONT, format, args);
156 * EFI GPT i.e. GPT data should be in little endian format as indicated in the
200 * on-disk GPT and GPE are stored in little endian format but this function
/illumos-gate/usr/src/cmd/boot/bootadm/
H A Dbootadm.h206 extern void bam_error(char *format, ...);
209 extern void bam_print_stderr(char *format, ...);
210 extern void bam_derror(char *format, ...);
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Dsml.c1144 * printf-style format for debugging message to be output
1146 * arguments as appropriate to 'format' specified
1309 * format - [RO, RO*] (char *)
1310 * printf-style format to create parameter value from
1312 * arguments as appropriate to 'format' specified
1315 * according to the results of the format string
1321 smlSetParamF(SML_TAG *tag, char *name, char *format, ...) argument
1333 assert(format != NULL);
1334 assert(*format != '\0');
1338 va_start(ap, format);
1387 smlGetParamF(SML_TAG *tag, char *format, ...) argument
1538 smlParamEqF(SML_TAG *tag, char *findTag, char *findParam, char *format, ...) argument
[all...]
/illumos-gate/usr/src/lib/libkmf/plugins/kmf_openssl/common/
H A Dopenssl_spi.c385 /* Convert to raw DER format */
393 /* Decode to KMF format */
589 KMF_ENCODE_FORMAT format; local
592 * auto-detect the file format, regardless of what
593 * the 'format' parameters in the params say.
595 rv = kmf_get_file_format(pathname, &format);
602 /* Not ASN1(DER) format */
609 if (format == KMF_FORMAT_PEM)
611 else if (format == KMF_FORMAT_ASN1)
613 else if (format
674 KMF_ENCODE_FORMAT format; local
960 KMF_ENCODE_FORMAT format; local
1221 KMF_ENCODE_FORMAT format; local
1410 ssl_write_key(KMF_HANDLE *kmfh, KMF_ENCODE_FORMAT format, BIO *out, KMF_CREDENTIAL *cred, EVP_PKEY *pkey, boolean_t private) argument
1683 KMF_ENCODE_FORMAT format; local
4376 KMF_ENCODE_FORMAT format; local
4865 KMF_ENCODE_FORMAT format = KMF_FORMAT_PEM; local
4998 KMF_ENCODE_FORMAT format; local
5164 KMF_ENCODE_FORMAT format; local
5274 KMF_ENCODE_FORMAT format; local
5325 KMF_ENCODE_FORMAT format; local
[all...]
/illumos-gate/usr/src/lib/libbsm/
H A Dauditxml.pm57 my $format = '';
61 $format = $internal->getAttr('format');
62 $format = '' unless defined $format;
71 $entry{$kidId} = [$external, $kid, $tokenId, $format, $comment];
/illumos-gate/usr/src/cmd/newform/
H A Dnewform.c112 format[80] = "-8"; /* Array to hold format line */ variable
144 if (optionf) { /* Write tab spec format line. */
146 (void) fputs(format, stdout);
234 (void) strcpy(format, scan);
239 (void) strcpy(format, "-8");
629 (void) strcpy(format, tabspecp);
874 (void) fprintf(stderr, "not -s format\r\n");
/illumos-gate/usr/src/cmd/format/
H A Dmisc.c854 dump(hdr, src, nbytes, format)
858 int format;
865 assert(format == HEX_ONLY || format == HEX_ASCII);
880 if (format == HEX_ASCII) {
/illumos-gate/usr/src/cmd/idmap/idmapd/
H A Didmapd.c524 idmapdlog(int pri, const char *format, ...) { argument
538 va_start(args, format);
539 (void) vfprintf(stderr, format, args);
550 va_start(args, format);
551 vsyslog(pri, format, args);
/illumos-gate/usr/src/common/elfcap/
H A Delfcap.c75 static const elfcap_str_t format[] = { variable
80 #define FORMAT_NELTS (sizeof (format) / sizeof (format[0]))
404 &format[fmt])) != ELFCAP_ERR_NONE))
421 if (follow && ((err = token(&str, &slen, &format[fmt])) !=
438 * Initialize the string buffer, and validate the format request.
464 * Initialize the string buffer, and validate the format request.
489 * Initialize the string buffer, and validate the format request.
/illumos-gate/usr/src/uts/intel/io/drm/
H A Di915_gem_debug.c133 char *format = NULL; local
184 format="8";
187 format="565";
190 format="1555";
193 format="8888";
197 instr_out(data, hw_offset, 1, "format %s, pitch %d, "
198 "clipping %sabled\n", format,
225 format="8";
228 format="565";
231 format
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dlgrp.c41 char *format; local
45 format = separator ? ", %d" : "%d";
46 mdb_printf(format, start);
47 count = mdb_snprintf(&tmp, 1, format, start);
49 format = separator ? ", %d-%d" : "%d-%d";
50 mdb_printf(format, start, end);
51 count = mdb_snprintf(&tmp, 1, format, start, end);
/illumos-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_api.c92 fmd_api_vxerror(fmd_module_t *mp, int err, const char *format, va_list ap) argument
114 * Format the message using vsnprintf(). As usual, if the format has a
117 if (strchr(format, '\n') != NULL)
120 len1 = vsnprintf(&c, 1, format, ap);
124 (void) vsnprintf(msg, len1 + 1, format, ap);
182 fmd_api_xerror(fmd_module_t *mp, int err, const char *format, ...) argument
186 va_start(ap, format);
187 fmd_api_vxerror(mp, err, format, ap);
198 fmd_api_verror(fmd_module_t *mp, int err, const char *format, va_list ap) argument
203 fmd_api_vxerror(mp, err, format, a
209 fmd_api_error(fmd_module_t *mp, int err, const char *format, ...) argument
844 fmd_hdl_vabort(fmd_hdl_t *hdl, const char *format, va_list ap) argument
846 fmd_api_verror(fmd_api_module_lock(hdl), EFMD_HDL_ABORT, format, ap); local
851 fmd_hdl_abort(fmd_hdl_t *hdl, const char *format, ...) argument
862 fmd_hdl_verror(fmd_hdl_t *hdl, const char *format, va_list ap) argument
871 fmd_hdl_error(fmd_hdl_t *hdl, const char *format, ...) argument
881 fmd_hdl_vdebug(fmd_hdl_t *hdl, const char *format, va_list ap) argument
926 fmd_hdl_debug(fmd_hdl_t *hdl, const char *format, ...) argument
[all...]

Completed in 140 milliseconds

<<11121314151617181920>>