| /PHP_5_5/ext/soap/interop/ |
| H A D | client_round2_params.php | 25 var $type = 'php'; variable 58 // determine test type 63 $this->type = 'soapval'; variable 148 function soap_value($name, $value, $type, $type_name=NULL, $type_ns=NULL) { 149 return new SoapParam(new SoapVar($value,$type,$type_name,$type_ns),$name); 265 $test->type = 'soapval'; 447 $test->type = 'soapval'; 459 $test->type = 'soapval'; 471 $test->type = 'soapval'; 483 $test->type [all...] |
| /PHP_5_5/ext/xmlrpc/libxmlrpc/ |
| H A D | xmlrpc_private.h | 79 * A value of variable data type. The most important object in this API. :) 89 XMLRPC_VALUE_TYPE type; /* data type of this value */ member in struct:_xmlrpc_value 90 XMLRPC_VECTOR v; /* vector type specific info */ 116 XMLRPC_REQUEST_TYPE request_type; /* type of request */ 122 /* Vector type. Used by XMLRPC_VALUE. Never visible to users of the API. */ 124 XMLRPC_VECTOR_TYPE type; /* vector type */ member in struct:_xmlrpc_vector 164 const char* type_to_str(XMLRPC_VALUE_TYPE type, XMLRPC_VECTOR_TYPE vtype);
|
| /PHP_5_5/sapi/fpm/fpm/ |
| H A D | fpm_cleanup.c | 13 int type; member in struct:cleanup_s 20 int fpm_cleanup_add(int type, void (*cleanup)(int, void *), void *arg) /* {{{ */ argument 30 c->type = type; 38 void fpm_cleanups_run(int type) /* {{{ */ argument 44 if (c->type & type) { 45 c->cleanup(type, c->arg);
|
| /PHP_5_5/ext/fileinfo/libmagic/ |
| H A D | apptype.c | 10 * remarks Tue, 6 Apr 93: Moreover, it reports the type of the (new and very 15 * incorrectly identify the exe type. The "-z" option of "file" is the reason 48 APPTYPE rc, type; local 80 rc = DosQueryAppType((unsigned char *)path, &type); 108 if (type & FAPPTYP_32BIT) 111 if (type & FAPPTYP_PHYSDRV) { 114 } else if (type & FAPPTYP_VIRTDRV) { 117 } else if (type & FAPPTYP_DLL) { 118 if (type & FAPPTYP_PROTDLL) 123 } else if (type [all...] |
| H A D | encoding.c | 68 file_encoding(struct magic_set *ms, const unsigned char *buf, size_t nbytes, unichar **ubuf, size_t *ulen, const char **code, const char **code_mime, const char **type) argument 74 *type = "text"; 131 *type = "binary"; 161 * of this type were written.
|
| H A D | names.h | 40 to add mime type strings to the types table. 118 short type; member in struct:names
|
| /PHP_5_5/ext/gd/libgd/ |
| H A D | wbmp.h | 29 int type; /* type of the wbmp */ member in struct:Wbmp_
|
| /PHP_5_5/ext/intl/collator/ |
| H A D | collator_locale.c | 29 /* {{{ proto string Collator::getLocale( int $type ) 31 /* {{{ proto string collator_get_locale( Collator $coll, int $type ) 36 long type = 0; local 43 &object, Collator_ce_ptr, &type ) == FAILURE ) 63 /* Get locale by specified type. */ 65 co->ucoll, type, COLLATOR_ERROR_CODE_P( co ) ); 66 COLLATOR_CHECK_STATUS( co, "Error getting locale by type" );
|
| /PHP_5_5/ext/intl/common/ |
| H A D | common_date.cpp | 38 U_CFUNC TimeZone *timezone_convert_datetimezone(int type, argument 50 switch (type) { 180 int type; local 189 type = is_numeric_string(Z_STRVAL_P(z), Z_STRLEN_P(z), &lv, &rv, 0); 190 if (type == IS_DOUBLE) { 192 } else if (type == IS_LONG) { 233 spprintf(&message, 0, "%s: invalid object type for date/time " 241 spprintf(&message, 0, "%s: invalid PHP type for date", func);
|
| /PHP_5_5/ext/intl/formatter/ |
| H A D | formatter_attr.c | 422 /* {{{ proto string NumberFormatter::getLocale([int type]) 424 /* {{{ proto string numfmt_get_locale( NumberFormatter $nf[, int type] ) 429 long type = ULOC_ACTUAL_LOCALE; local 435 &object, NumberFormatter_ce_ptr, &type ) == FAILURE ) 446 loc = (char *)unum_getLocaleByType(FORMATTER_OBJECT(nfo), type, &INTL_DATA_ERROR_CODE(nfo));
|
| H A D | formatter_format.c | 28 /* {{{ proto mixed NumberFormatter::format( mixed $num[, int $type] ) 30 /* {{{ proto mixed numfmt_format( NumberFormatter $nf, mixed $num[, int type] ) 36 long type = FORMAT_TYPE_DEFAULT; local 44 &object, NumberFormatter_ce_ptr, &number, &type ) == FAILURE ) 55 if(type == FORMAT_TYPE_DEFAULT) { 62 type = (sizeof(long) == 8)?FORMAT_TYPE_INT64:FORMAT_TYPE_INT32; 64 type = FORMAT_TYPE_DOUBLE; 66 type = FORMAT_TYPE_INT32; 75 switch(type) { 123 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unsupported format type [all...] |
| H A D | formatter_parse.c | 32 /* {{{ proto mixed NumberFormatter::parse( string $str[, int $type, int &$position ]) 34 /* {{{ proto mixed numfmt_parse( NumberFormatter $nf, string $str[, int $type, int &$position ]) 39 long type = FORMAT_TYPE_DOUBLE; local 54 &object, NumberFormatter_ce_ptr, &str, &str_len, &type, &zposition ) == FAILURE ) 79 switch(type) { 97 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unsupported format type %ld", type);
|
| /PHP_5_5/TSRM/ |
| H A D | tsrm_nw.c | 53 TSRM_API FILE* popen(const char *commandline, const char *type) argument 73 if (!commandline || !type) 81 /* Set pipe mode according to type -- for now allow only "r" or "w" */ 82 if (strcmp(type, "r") == 0) 88 else if (strcmp(type, "w") == 0) 202 stream = fdopen(pipe_handle, type);
|
| /PHP_5_5/Zend/ |
| H A D | zend_stack.c | 119 ZEND_API void zend_stack_apply(zend_stack *stack, int type, int (*apply_function)(void *element)) argument 123 switch (type) { 142 ZEND_API void zend_stack_apply_with_argument(zend_stack *stack, int type, int (*apply_function)(void *element, void *arg), void *arg) argument 146 switch (type) {
|
| /PHP_5_5/ext/dba/ |
| H A D | dba_db2.c | 50 DBTYPE type; local 60 type = info->mode == DBA_READER ? DB_UNKNOWN : 79 if (db_open(info->path, type, gmode, filemode, NULL, NULL, &dbp)) {
|
| /PHP_5_5/ext/pdo_dblib/ |
| H A D | dblib_stmt.c | 42 static char *pdo_dblib_get_field_name(int type) argument 44 switch (type) {
|
| /PHP_5_5/ext/simplexml/ |
| H A D | php_simplexml.h | 67 SXE_ITER type; member in struct:__anon191::__anon192
|
| /PHP_5_5/ext/standard/ |
| H A D | type.c | 25 Returns the type of the variable */ 66 res_len = sizeof("object of type ")-1 + Z_OBJCE_P(arg)->name_length; 67 spprintf(&result, 0, "object of type %s", Z_OBJCE_P(arg)->name); 84 RETVAL_STRING("unknown type", 1); 89 /* {{{ proto bool settype(mixed var, string type) 90 Set the type of the variable */ 94 char *type; local 97 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Zs", &var, &type, &type_len) == FAILURE) { 101 if (!strcasecmp(type, "integer")) { 103 } else if (!strcasecmp(type, "in 215 php_is_type(INTERNAL_FUNCTION_PARAMETERS, int type) argument [all...] |
| H A D | dl.c | 102 PHPAPI int php_load_extension(char *filename, int type, int start_now TSRMLS_DC) argument 111 if (type == MODULE_PERSISTENT) { 117 if (type == MODULE_TEMPORARY) { 126 if (type == MODULE_TEMPORARY) { 198 unsigned char type; member in struct:pre_4_1_0_module_entry 238 module_entry->type = type; 247 if ((type == MODULE_TEMPORARY || start_now) && zend_startup_module_ex(module_entry TSRMLS_CC) == FAILURE) { 252 if ((type == MODULE_TEMPORARY || start_now) && module_entry->request_startup_func) { 253 if (module_entry->request_startup_func(type, module_entr 265 php_dl(char *file, int type, zval *return_value, int start_now TSRMLS_DC) argument 283 php_dl(char *file, int type, zval *return_value, int start_now TSRMLS_DC) argument [all...] |
| /PHP_5_5/ext/tokenizer/ |
| H A D | tokenizer.c | 209 /* {{{ proto string token_name(int type) 214 long type; local 216 if (zend_parse_parameters(argc TSRMLS_CC, "l", &type) == FAILURE) { 219 RETVAL_STRING(get_token_type_name(type), 1);
|
| /PHP_5_5/ext/pcre/pcrelib/ |
| H A D | pcre_newline.c | 67 type the newline type 76 PRIV(is_newline)(PCRE_PUCHAR ptr, int type, PCRE_PUCHAR endptr, int *lenptr, argument 92 if (type == NLTYPE_ANYCRLF) switch(c) 142 type the newline type 151 PRIV(was_newline)(PCRE_PUCHAR ptr, int type, PCRE_PUCHAR startptr, int *lenptr, argument 169 if (type == NLTYPE_ANYCRLF) switch(c)
|
| /PHP_5_5/ext/sockets/ |
| H A D | php_sockets.h | 59 int type; member in struct:__anon1
|
| /PHP_5_5/ext/opcache/ |
| H A D | zend_accelerator_debug.c | 31 void zend_accel_error(int type, const char *format, ...) argument 39 if (type > ZCG(accel_directives).log_verbosity_level) { 65 switch (type) { 87 switch (type) {
|
| /PHP_5_5/win32/ |
| H A D | sockets.c | 31 PHPAPI int socketpair(int domain, int type, int protocol, SOCKET sock[2]) argument 45 sock[0] = socket(domain, type, protocol); 66 sock[1] = socket(domain, type, protocol);
|
| /PHP_5_5/ext/mbstring/oniguruma/ |
| H A D | st.h | 25 struct st_hash_type *type; member in struct:st_table
|