Searched refs:argn (Results 1 - 2 of 2) sorted by relevance
| /PHP_TRUNK/ext/interbase/ |
| H A D | interbase.c | 1129 int argn; local 1138 argn = ZEND_NUM_ARGS(); 1140 /* (1+argn) is an upper bound for the number of links this trans connects to */ 1141 ib_link = (ibase_db_link **) safe_emalloc(sizeof(ibase_db_link *),1+argn,0); 1143 if (argn > 0) { 1149 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "+", &args, &argn) == FAILURE) { 1155 teb = (ISC_TEB *) safe_emalloc(sizeof(ISC_TEB),argn,0); 1156 tpb = (char *) safe_emalloc(TPB_MAX_SIZE,argn,0); 1160 for (i = 0; i < argn; ++i) {
|
| /PHP_TRUNK/sapi/cli/ |
| H A D | php_cli.c | 1042 zval *argn, *argi; local 1059 ALLOC_ZVAL(argn); 1060 Z_TYPE_P(argn) = IS_STRING; 1061 Z_STRLEN_P(argn) = ++len; 1062 Z_STRVAL_P(argn) = estrndup(input, len); 1063 INIT_PZVAL(argn); 1064 zend_hash_update(&EG(symbol_table), "argn", sizeof("argn"), &argn, sizeof(zval *), NULL);
|
Completed in 6 milliseconds