| /PHP_5_3/ |
| H A D | makedist | 67 git archive --format=tar --remote=$PHPROOT refs/tags/PHP-$VER --prefix=php-$VER/ | (cd $MY_OLDPWD; tar xvf -) || exit 4
|
| /PHP_5_3/sapi/fpm/fpm/ |
| H A D | zlog.h | 21 __attribute__ ((format(printf,4,5)));
|
| H A D | fpm_log.c | 107 char format[129]; local 160 memset(format, '\0', sizeof(format)); /* reset format */ 177 if (format[0] == '\0' || !strcasecmp(format, "total")) { 181 } else if (!strcasecmp(format, "user")) { 185 } else if (!strcasecmp(format, "system")) { 190 zlog(ZLOG_WARNING, "only 'total', 'user' or 'system' are allowed as a modifier for %%%c ('%s')", *s, format); 194 format[ [all...] |
| /PHP_5_3/ext/gd/libgd/ |
| H A D | gdkanji.c | 59 debug (const char *format,...) argument 64 va_start (args, format); 66 vfprintf (stdout, format, args); 73 error (const char *format,...) argument 79 va_start(args, format); 80 vspprintf(&tmp, 0, format, args);
|
| H A D | xbm.c | 159 void gdCtxPrintf(gdIOCtx * out, const char *format, ...) argument 165 va_start(args, format); 166 len = vspprintf(&buf, 0, format, args);
|
| /PHP_5_3/ext/intl/doc/ |
| H A D | msgfmt_api.php | 36 public function format($args) {} function
|
| /PHP_5_3/ext/date/ |
| H A D | php_date.h | 168 PHPAPI int php_idate(char format, time_t ts, int localtime); 173 PHPAPI char *php_format_date(char *format, int format_len, time_t ts, int localtime TSRMLS_DC); 185 PHPAPI int php_date_initialize(php_date_obj *dateobj, /*const*/ char *time_str, int time_str_len, char *format, zval *timezone_object, int ctor TSRMLS_DC);
|
| H A D | php_date.c | 44 ZEND_ARG_INFO(0, format) 49 ZEND_ARG_INFO(0, format) 54 ZEND_ARG_INFO(0, format) 88 ZEND_ARG_INFO(0, format) 93 ZEND_ARG_INFO(0, format) 118 ZEND_ARG_INFO(0, format) 127 ZEND_ARG_INFO(0, format) 146 ZEND_ARG_INFO(0, format) 156 ZEND_ARG_INFO(0, format) 165 ZEND_ARG_INFO(0, format) 1015 date_format(char *format, int format_len, timelib_time *t, int localtime) argument 1171 char *format; local 1189 php_format_date(char *format, int format_len, time_t ts, int localtime TSRMLS_DC) argument 1216 php_idate(char format, time_t ts, int localtime) argument 1331 char *format; local 1586 char *format, *buf; local 2397 php_date_initialize(php_date_obj *dateobj, char *time_str, int time_str_len, char *format, zval *timezone_object, int ctor TSRMLS_DC) argument 2763 char *date, *format; local 2784 char *format; local 3475 date_interval_initialize(timelib_rel_time **rt, char *format, int format_length TSRMLS_DC) argument 3743 date_interval_format(char *format, int format_len, timelib_rel_time *t) argument 3811 char *format; local 3824 date_period_initialize(timelib_time **st, timelib_time **et, timelib_rel_time **d, long *recurrences, char *format, int format_length TSRMLS_DC) argument [all...] |
| /PHP_5_3/ext/exif/ |
| H A D | exif.c | 318 /* {{{ format description defines 319 Describes format descriptor 339 static char *exif_get_tagformat(int format) argument 341 switch(format) { 1167 char * exif_dump_data(int *dump_free, int format, int components, int length, int motorola_intel, char *value_ptr TSRMLS_DC) /* {{{ */ argument 1173 if (format == TAG_FMT_STRING) { 1176 if (format == TAG_FMT_UNDEFINED) { 1179 if (format == TAG_FMT_IFD) { 1182 if (format == TAG_FMT_SINGLE || format 1242 exif_convert_any_format(void *value, int format, int motorola_intel TSRMLS_DC) argument 1291 exif_convert_any_to_int(void *value, int format, int motorola_intel TSRMLS_DC) argument 1370 WORD format; member in struct:__anon49 1574 exif_error_docref(const char *docref EXIFERR_DC, const image_info_type *ImageInfo, int type, const char *format, ...) argument 1673 exif_iif_add_value(image_info_type *image_info, int section_index, char *name, int tag, int format, int length, void* value, int motorola_intel TSRMLS_DC) argument 1809 exif_iif_add_tag(image_info_type *image_info, int section_index, char *name, int tag, int format, size_t length, void* value TSRMLS_DC) argument 2831 int tag, format, components; local [all...] |
| /PHP_5_3/ext/mysqli/ |
| H A D | mysqli_exception.c | 39 void php_mysqli_throw_sql_exception(char *sqlstate, int errorno TSRMLS_DC, char *format, ...) argument 45 va_start(arg, format); 46 vspprintf(&message, 0, format, arg);
|
| H A D | mysqli_report.c | 30 extern void php_mysqli_throw_sql_exception(char *sqlstate, int errorno TSRMLS_DC, char *format, ...);
|
| /PHP_5_3/ext/soap/ |
| H A D | php_soap.h | 198 #define soap_error0(severity, format) \ 199 php_error(severity, "SOAP-ERROR: " format) 201 #define soap_error1(severity, format, param1) \ 202 php_error(severity, "SOAP-ERROR: " format, param1) 204 #define soap_error2(severity, format, param1, param2) \ 205 php_error(severity, "SOAP-ERROR: " format, param1, param2) 207 #define soap_error3(severity, format, param1, param2, param3) \ 208 php_error(severity, "SOAP-ERROR: " format, param1, param2, param3)
|
| /PHP_5_3/ext/standard/ |
| H A D | datetime.c | 53 Return date string in standard format for http headers */ 90 char *strptime(const char *s, const char *format, struct tm *tm); 93 /* {{{ proto string strptime(string timestamp, string format) 99 char *format; local 104 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &ts, &ts_length, &format, &format_length) == FAILURE) { 110 unparsed_part = strptime(ts, format, &parsed_time);
|
| H A D | formatted_print.c | 380 char *format, *result, padding; local 419 format = Z_STRVAL_PP(args[format_offset]); 428 PRINTF_DEBUG(("sprintf: format[%d]='%c'\n", inpos, format[inpos])); 430 if (format[inpos] != '%') { 431 php_sprintf_appendchar(&result, &outpos, &size, format[inpos++] TSRMLS_CC); 432 } else if (format[inpos + 1] == '%') { 436 /* starting a new format specifier, reset variables */ 444 format[inpos], inpos)); 445 if (isascii((int)format[inpo [all...] |
| H A D | pack.c | 62 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Type %c: integer overflow in format string", code); \ 105 /* {{{ proto string pack(string format, mixed arg1 [, mixed arg2 [, mixed ...]]) 106 Takes one or more arguments and packs them into a binary string according to the format argument */ 112 char *format; local 129 format = Z_STRVAL_PP(argv[0]); 132 /* We have a maximum of <formatlen> format codes to deal with */ 137 /* Preprocess format into formatcodes and formatargs */ 139 char code = format[i++]; 142 /* Handle format arguments if any */ 144 char c = format[ 521 char *format, *input, *formatarg, *inputarg; local [all...] |
| H A D | scanf.c | 118 static char *BuildCharSet(CharSet *cset, char *format); 129 * This function examines a character set format specification 134 * Returns the next format position. 141 static char * BuildCharSet(CharSet *cset, char *format) argument 149 ch = format; 152 ch = ++format; 154 end = format + 1; /* verify this - cc */ 170 cset->chars = (char *) safe_emalloc(sizeof(char), (end - format - 1), 0); 181 ch = format++; 185 ch = format 311 ValidateFormat(char *format, int numVars, int *totalSubs) argument 579 php_sscanf_internal( char *string, char *format, int argCount, zval ***args, int varStart, zval **return_value TSRMLS_DC) argument [all...] |
| H A D | scanf.h | 32 /* can be caused by bad parameters or format*/ 44 PHPAPI int ValidateFormat(char *format, int numVars, int *totalVars); 45 PHPAPI int php_sscanf_internal(char *string,char *format,int argCount,zval ***args,
|
| /PHP_5_3/main/ |
| H A D | php.h | 275 PHPAPI int php_printf(const char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, 1, 278 int Debug(char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, 1, 2); 292 PHPAPI void php_verror(const char *docref, const char *params, int type, const char *format, va_list args TSRMLS_DC) PHP_ATTRIBUTE_FORMAT(printf, 4, 0); 300 /* PHPAPI void php_error(int type, const char *format, ...); */ 301 PHPAPI void php_error_docref0(const char *docref TSRMLS_DC, int type, const char *format, ...) 303 PHPAPI void php_error_docref1(const char *docref TSRMLS_DC, const char *param1, int type, const char *format, ...) 305 PHPAPI void php_error_docref2(const char *docref TSRMLS_DC, const char *param1, const char *param2, int type, const char *format, ...)
|
| H A D | php_sprintf.c | 31 php_sprintf (char*s, const char* format, ...) argument 36 va_start (args, format); 38 ret = vsprintf (s, format, args);
|
| H A D | snprintf.c | 159 /* exponential format (e.g. 1.2345e+13) */ 196 /* standard format 0. */ 208 /* standard format */ 302 * Convert num to its decimal format. 372 PHPAPI char * php_conv_fp(register char format, register double num, argument 383 if (format == 'F') { 385 } else { /* either e or E format */ 399 if (format == 'F') { 439 if (format != 'F') { 444 *s++ = format; /* eithe 477 ap_php_conv_p2(register u_wide_int num, register int nbits, char format, char *buf_end, register int *len) argument 1192 strx_printv(int *ccp, char *buf, size_t len, const char *format, va_list ap) argument 1223 ap_php_slprintf(char *buf, size_t len, const char *format,...) argument 1239 ap_php_vslprintf(char *buf, size_t len, const char *format, va_list ap) argument 1252 ap_php_snprintf(char *buf, size_t len, const char *format,...) argument 1264 ap_php_vsnprintf(char *buf, size_t len, const char *format, va_list ap) argument 1273 ap_php_vasprintf(char **buf, const char *format, va_list ap) argument 1297 ap_php_asprintf(char **buf, const char *format, ...) argument [all...] |
| H A D | snprintf.h | 81 PHPAPI int ap_php_slprintf(char *buf, size_t len, const char *format,...); 82 PHPAPI int ap_php_vslprintf(char *buf, size_t len, const char *format, va_list ap); 85 PHPAPI int ap_php_vasprintf(char **buf, const char *format, va_list ap); 86 PHPAPI int ap_php_asprintf(char **buf, const char *format, ...); 87 PHPAPI int php_sprintf (char* s, const char* format, ...) PHP_ATTRIBUTE_FORMAT(printf, 2, 3); 89 PHPAPI char * php_conv_fp(register char format, register double num, 159 char format, char *buf_end, register int *len);
|
| H A D | spprintf.h | 40 PHPAPI int spprintf( char **pbuf, size_t max_len, const char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, 3, 4); 42 PHPAPI int vspprintf(char **pbuf, size_t max_len, const char *format, va_list ap) PHP_ATTRIBUTE_FORMAT(printf, 3, 0);
|
| /PHP_5_3/Zend/ |
| H A D | acconfig.h | 67 int zend_sprintf(char *buffer, const char *format, ...);
|
| H A D | zend_exceptions.h | 44 ZEND_API zval * zend_throw_exception_ex(zend_class_entry *exception_ce, long code TSRMLS_DC, char *format, ...); 56 int zend_spprintf(char **message, int max_len, char *format, ...);
|
| H A D | zend_sprintf.c | 31 int zend_sprintf(char *buffer, const char *format, ...) argument 35 va_start(args, format); 36 vsprintf(buffer, format, args);
|