| /PHP_5_4/ext/mbstring/oniguruma/ |
| H A D | regsyntax.c | 209 unsigned int what, OnigCodePoint code) 211 switch (what) { 208 onig_set_meta_char(OnigEncoding enc, unsigned int what, OnigCodePoint code) argument
|
| /PHP_5_4/ext/fileinfo/ |
| H A D | fileinfo.c | 418 zval *what; local 427 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &what) == FAILURE) { 431 switch (Z_TYPE_P(what)) { 433 buffer = Z_STRVAL_P(what); 434 buffer_len = Z_STRLEN_P(what); 483 php_stream_from_zval_no_verify(stream, &what);
|
| /PHP_5_4/ext/pdo_odbc/ |
| H A D | odbc_driver.c | 48 einfo->what, einfo->last_error, 59 void pdo_odbc_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, PDO_ODBC_HSTMT statement, char *what, const char *file, int line TSRMLS_DC) /* {{{ */ argument 102 einfo->what = what; 108 *pdo_err, what, einfo->last_error, einfo->last_err_msg); local 212 H->einfo.what = S->einfo.what; 348 H->einfo.what = "setAttribute";
|
| H A D | php_pdo_odbc_int.h | 124 const char *file, *what; member in struct:__anon164 170 void pdo_odbc_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, PDO_ODBC_HSTMT statement, char *what, const char *file, int line TSRMLS_DC); 171 #define pdo_odbc_drv_error(what) pdo_odbc_error(dbh, NULL, SQL_NULL_HSTMT, what, __FILE__, __LINE__ TSRMLS_CC) 172 #define pdo_odbc_stmt_error(what) pdo_odbc_error(stmt->dbh, stmt, SQL_NULL_HSTMT, what, __FILE__, __LINE__ TSRMLS_CC) 173 #define pdo_odbc_doer_error(what) pdo_odbc_error(dbh, NULL, stmt, what, __FILE__, __LINE__ TSRMLS_CC)
|
| /PHP_5_4/ext/standard/ |
| H A D | assert.c | 262 /* {{{ proto mixed assert_options(int what [, mixed value]) 267 long what; local 271 if (zend_parse_parameters(ac TSRMLS_CC, "l|Z", &what, &value) == FAILURE) { 275 switch (what) { 331 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown value %ld", what);
|
| H A D | file.c | 1121 void *what; local 1127 what = zend_fetch_resource(&file_handle TSRMLS_CC, -1, "File-Handle", &type, 2, php_file_le_stream(), php_file_le_pstream()); 1129 /* we can't do a ZEND_VERIFY_RESOURCE(what), otherwise we end up 1132 if (!what) { 1139 buf = php_stream_get_line((php_stream *) what, NULL, 0, &len);
|
| H A D | string.c | 789 * what indicates which chars are to be trimmed. NULL->default (' \t\n\r\v\0') 791 PHPAPI char *php_trim(char *c, int len, char *what, int what_len, zval *return_value, int mode TSRMLS_DC) argument 797 if (what) { 798 php_charmask((unsigned char*)what, what_len, mask TSRMLS_CC); 839 char *what = NULL; local 842 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s", &str, &str_len, &what, &what_len) == FAILURE) { 846 php_trim(str, str_len, what, what_len, return_value, mode TSRMLS_CC); 3357 char *str, *what; local 3360 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &str, &str_len, &what, &what_len) == FAILURE) { 3372 Z_STRVAL_P(return_value) = php_addcslashes(str, str_len, &Z_STRLEN_P(return_value), 0, what, what_le 3515 php_addcslashes(const char *str, int length, int *new_length, int should_free, char *what, int wlength TSRMLS_DC) argument [all...] |
| /PHP_5_4/ext/pdo_oci/ |
| H A D | oci_driver.c | 60 ub4 _oci_error(OCIError *err, pdo_dbh_t *dbh, pdo_stmt_t *stmt, char *what, sword status, int isinit, const char *file, int line TSRMLS_DC) /* {{{ */ argument 89 slprintf(tmp_buf, sizeof(tmp_buf), "%s (%s:%d)", what, file, line); 99 slprintf(tmp_buf, sizeof(tmp_buf), "%s: %s (%s:%d)", what, errbuf, file, line); 104 slprintf(tmp_buf, sizeof(tmp_buf), "%s: OCI_SUCCESS_WITH_INFO: %s (%s:%d)", what, errbuf, file, line); 108 slprintf(tmp_buf, sizeof(tmp_buf), "%s: OCI_NEED_DATA (%s:%d)", what, file, line); 112 slprintf(tmp_buf, sizeof(tmp_buf), "%s: OCI_NO_DATA (%s:%d)", what, file, line); 116 slprintf(tmp_buf, sizeof(tmp_buf), "%s: OCI_INVALID_HANDLE (%s:%d)", what, file, line); 120 slprintf(tmp_buf, sizeof(tmp_buf), "%s: OCI_STILL_EXECUTING (%s:%d)", what, file, line); 124 slprintf(tmp_buf, sizeof(tmp_buf), "%s: OCI_CONTINUE (%s:%d)", what, file, line);
|
| /PHP_5_4/ext/openssl/ |
| H A D | openssl.c | 1219 void * what; local 1222 what = zend_fetch_resource(val TSRMLS_CC, -1, "OpenSSL X.509", &type, 1, le_x509); 1223 if (!what) { 1231 return (X509*)what; 2254 void * what; local 2257 what = zend_fetch_resource(val TSRMLS_CC, -1, "OpenSSL X.509 CSR", &type, 1, le_csr); 2258 if (what) { 2262 return (X509_REQ*)what; 2711 void * what; local 2714 what [all...] |
| /PHP_5_4/ext/pcre/pcrelib/ |
| H A D | pcre_config.c | 55 * Return info about what features are configured * 62 what what information is required 70 pcre_config(int what, void *where) argument 73 pcre16_config(int what, void *where) 76 pcre32_config(int what, void *where) 79 switch (what)
|
| H A D | pcre_fullinfo.c | 62 what what information is required 71 int what, void *where) 75 int what, void *where) 79 int what, void *where) 103 switch (what) 70 pcre_fullinfo(const pcre *argument_re, const pcre_extra *extra_data, int what, void *where) argument
|
| /PHP_5_4/ext/curl/ |
| H A D | interface.c | 1897 void * what; local 1899 what = zend_fetch_resource(zvalue TSRMLS_CC, -1, "File-Handle", &type, 1, php_file_le_stream(), php_file_le_pstream()); 1900 if (!what) { 1905 if (FAILURE == php_stream_cast((php_stream *) what, PHP_STREAM_AS_STDIO, (void *) &fp, REPORT_ERRORS)) { 1918 if (((php_stream *) what)->mode[0] != 'r' || ((php_stream *) what)->mode[1] == '+') { 1933 if (((php_stream *) what)->mode[0] != 'r' || ((php_stream *) what)->mode[1] == '+') { 1957 if (((php_stream *) what)->mode[0] != 'r' || ((php_stream *) what) [all...] |
| /PHP_5_4/ext/date/ |
| H A D | php_date.c | 347 ZEND_ARG_INFO(0, what) 3964 static int check_id_allowed(char *id, long what) argument 3966 if (what & PHP_DATE_TIMEZONE_GROUP_AFRICA && strncasecmp(id, "Africa/", 7) == 0) return 1; 3967 if (what & PHP_DATE_TIMEZONE_GROUP_AMERICA && strncasecmp(id, "America/", 8) == 0) return 1; 3968 if (what & PHP_DATE_TIMEZONE_GROUP_ANTARCTICA && strncasecmp(id, "Antarctica/", 11) == 0) return 1; 3969 if (what & PHP_DATE_TIMEZONE_GROUP_ARCTIC && strncasecmp(id, "Arctic/", 7) == 0) return 1; 3970 if (what & PHP_DATE_TIMEZONE_GROUP_ASIA && strncasecmp(id, "Asia/", 5) == 0) return 1; 3971 if (what & PHP_DATE_TIMEZONE_GROUP_ATLANTIC && strncasecmp(id, "Atlantic/", 9) == 0) return 1; 3972 if (what & PHP_DATE_TIMEZONE_GROUP_AUSTRALIA && strncasecmp(id, "Australia/", 10) == 0) return 1; 3973 if (what 3988 long what = PHP_DATE_TIMEZONE_GROUP_ALL; local [all...] |
| /PHP_5_4/Zend/ |
| H A D | zend_API.c | 1153 char *what = (class_type->ce_flags & ZEND_ACC_INTERFACE) ? "interface" local 1156 zend_error(E_ERROR, "Cannot instantiate %s %s", what, class_type->name); 3052 fcc->calling_scope = Z_OBJCE_PP(obj); /* TBFixed: what if it's overloaded? */ 3110 zend_class_entry *ce = Z_OBJCE_P(callable); /* TBFixed: what if it's overloaded? */
|
| /PHP_5_4/ext/readline/ |
| H A D | readline.c | 236 char *what = NULL; local 241 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|sZ", &what, &what_len, &value) == FAILURE) { 245 if (!what) { 264 if (!strcasecmp(what,"line_buffer")) { 272 } else if (!strcasecmp(what, "point")) { 274 } else if (!strcasecmp(what, "end")) { 277 } else if (!strcasecmp(what, "mark")) { 279 } else if (!strcasecmp(what, "done")) { 286 } else if (!strcasecmp(what, "pending_input")) { 293 } else if (!strcasecmp(what, "promp [all...] |