• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/bash-94.1.2/bash-3.2/

Lines Matching defs:format

129    format string. */
139 programming_error (const char *format, ...)
141 programming_error (format, va_alist)
142 const char *format;
153 SH_VA_START (args, format);
155 vfprintf (stderr, format, args);
183 report_error (const char *format, ...)
185 report_error (format, va_alist)
186 const char *format;
194 SH_VA_START (args, format);
196 vfprintf (stderr, format, args);
206 fatal_error (const char *format, ...)
208 fatal_error (format, va_alist)
209 const char *format;
217 SH_VA_START (args, format);
219 vfprintf (stderr, format, args);
228 internal_error (const char *format, ...)
230 internal_error (format, va_alist)
231 const char *format;
239 SH_VA_START (args, format);
241 vfprintf (stderr, format, args);
249 internal_warning (const char *format, ...)
251 internal_warning (format, va_alist)
252 const char *format;
260 SH_VA_START (args, format);
262 vfprintf (stderr, format, args);
270 sys_error (const char *format, ...)
272 sys_error (format, va_alist)
273 const char *format;
283 SH_VA_START (args, format);
285 vfprintf (stderr, format, args);
301 parser_error (int lineno, const char *format, ...)
303 parser_error (lineno, format, va_alist)
305 const char *format;
324 SH_VA_START (args, format);
326 vfprintf (stderr, format, args);
338 itrace (const char *format, ...)
340 itrace (format, va_alist)
341 const char *format;
349 SH_VA_START (args, format);
351 vfprintf (stderr, format, args);
363 trace (const char *format, ...)
365 trace (format, va_alist)
366 const char *format;
383 SH_VA_START (args, format);
385 vfprintf (tracefp, format, args);