| /PHP_TRUNK/ext/interbase/ |
| H A D | ibase_blobs.c | 175 int item = *p++; local 179 switch (item) {
|
| H A D | ibase_query.c | 1573 char item = bl_info[i++]; local 1575 if (item == isc_info_end || item == isc_info_truncated || 1576 item == isc_info_error || i >= sizeof(bl_info)) { 1585 if (item == isc_info_blob_total_length) {
|
| /PHP_TRUNK/ext/mysqli/ |
| H A D | mysqli_embedded.c | 61 zval **item; local 63 if (zend_hash_get_current_data_ex(HASH_OF(args), (void **) &item, &pos) == FAILURE) { 67 convert_to_string_ex(item); 69 arguments[++index] = Z_STRVAL_PP(item); 82 zval ** item; local 84 if (zend_hash_get_current_data_ex(HASH_OF(grps), (void **) &item, &pos) == FAILURE) { 88 convert_to_string_ex(item); 90 groups[++index] = Z_STRVAL_PP(item);
|
| /PHP_TRUNK/ext/standard/ |
| H A D | proc_open.c | 484 zval **item; local 485 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(other_options), "suppress_errors", sizeof("suppress_errors"), (void**)&item)) { 486 if ((Z_TYPE_PP(item) == IS_BOOL || Z_TYPE_PP(item) == IS_LONG) && 487 Z_LVAL_PP(item)) { 491 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(other_options), "bypass_shell", sizeof("bypass_shell"), (void**)&item)) { 492 if ((Z_TYPE_PP(item) == IS_BOOL || Z_TYPE_PP(item) == IS_LONG) && 493 Z_LVAL_PP(item)) { 562 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Descriptor item mus [all...] |
| H A D | string.c | 532 /* {{{ proto string nl_langinfo(int item) 536 long item; local 539 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &item) == FAILURE) { 543 switch(item) { /* {{{ */ 704 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Item '%ld' is not valid", item); 709 value = nl_langinfo(item);
|
| /PHP_TRUNK/ext/soap/ |
| H A D | php_encoding.c | 2241 xmlNodeSetName(xparam, BAD_CAST("item")); 2265 xmlNodeSetName(xparam, BAD_CAST("item")); 2786 xmlNodePtr xparam, item; local 2793 item = xmlNewNode(NULL, BAD_CAST("item")); 2794 xmlAddChild(xmlParam, item); 2796 xmlAddChild(item,key); 2815 xparam = master_to_xml(get_conversion((*temp_data)->type), (*temp_data), style, item TSRMLS_CC); 2831 xmlNodePtr trav, item, xmlKey, xmlValue; local 2841 FOREACHNODE(trav, "item", ite [all...] |
| /PHP_TRUNK/ext/openssl/ |
| H A D | openssl.c | 804 if (optional_args && zend_hash_find(Z_ARRVAL_P(optional_args), key, sizeof(key), (void**)&item) == SUCCESS) \ 805 varname = Z_STRVAL_PP(item); \ 810 if (optional_args && zend_hash_find(Z_ARRVAL_P(optional_args), key, sizeof(key), (void**)&item) == SUCCESS) \ 811 varname = Z_LVAL_PP(item); \ 822 zval ** item; local 856 if (optional_args && zend_hash_find(Z_ARRVAL_P(optional_args), "encrypt_key", sizeof("encrypt_key"), (void**)&item) == SUCCESS) { 857 req->priv_key_encrypt = Z_BVAL_PP(item); 870 if (req->priv_key_encrypt && optional_args && zend_hash_find(Z_ARRVAL_P(optional_args), "encrypt_key_cipher", sizeof("encrypt_key_cipher"), (void**)&item) == SUCCESS) { 871 long cipher_algo = Z_LVAL_PP(item); 1983 zval ** item; local 2149 zval ** item; local 2230 zval ** item; local 2419 zval ** item; local [all...] |
| /PHP_TRUNK/ext/pdo_firebird/ |
| H A D | firebird_statement.c | 248 char item = bl_info[i++]; local 250 if (item == isc_info_end || item == isc_info_truncated || item == isc_info_error 258 if (item == isc_info_blob_total_length) {
|
| /PHP_TRUNK/ext/gd/ |
| H A D | gd.c | 1543 zval ** item; local 1545 if (zend_hash_get_current_data_ex(HASH_OF(styles), (void **) &item, &pos) == FAILURE) { 1549 convert_to_long_ex(item); 1551 stylearr[index++] = Z_LVAL_PP(item); 3845 zval ** item; local 3853 if (zend_hash_get_current_data_ex(HASH_OF(EXT), (void **) &item, &pos) == FAILURE) { 3858 convert_to_double_ex(item); 3860 strex.linespacing = Z_DVAL_PP(item);
|
| /PHP_TRUNK/ext/sqlite3/ |
| H A D | sqlite3.c | 2002 static void php_sqlite3_free_list_dtor(void **item) argument 2004 php_sqlite3_free_list *free_item = (php_sqlite3_free_list *)*item; 2010 efree(*item);
|
| /PHP_TRUNK/ext/com_dotnet/ |
| H A D | com_variant.c | 46 zval **item; local 76 if (FAILURE == zend_hash_get_current_data_ex(HASH_OF(z), (void**)&item, &pos)) { 80 php_com_variant_from_zval(&va[intindex], *item, codepage TSRMLS_CC);
|
| /PHP_TRUNK/ext/sysvmsg/ |
| H A D | sysvmsg.c | 170 zval **item; local 173 if (zend_hash_find(Z_ARRVAL_P(data), "msg_perm.uid", sizeof("msg_perm.uid"), (void **) &item) == SUCCESS) { 174 convert_to_long_ex(item); 175 stat.msg_perm.uid = Z_LVAL_PP(item); 177 if (zend_hash_find(Z_ARRVAL_P(data), "msg_perm.gid", sizeof("msg_perm.gid"), (void **) &item) == SUCCESS) { 178 convert_to_long_ex(item); 179 stat.msg_perm.gid = Z_LVAL_PP(item); 181 if (zend_hash_find(Z_ARRVAL_P(data), "msg_perm.mode", sizeof("msg_perm.mode"), (void **) &item) == SUCCESS) { 182 convert_to_long_ex(item); 183 stat.msg_perm.mode = Z_LVAL_PP(item); [all...] |
| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo_dbh.c | 134 zval **item; local 136 if (SUCCESS == zend_hash_index_find(Z_ARRVAL_P(info), 1, (void**)&item)) { 137 native_code = Z_LVAL_PP(item); 140 if (SUCCESS == zend_hash_index_find(Z_ARRVAL_P(info), 2, (void**)&item)) { 141 supp = estrndup(Z_STRVAL_PP(item), Z_STRLEN_PP(item)); 517 zval *options = NULL, **opt, **item, *ctor_args; local 529 if (Z_TYPE_PP(opt) != IS_ARRAY || zend_hash_index_find(Z_ARRVAL_PP(opt), 0, (void**)&item) == FAILURE 530 || Z_TYPE_PP(item) != IS_STRING 531 || zend_lookup_class(Z_STRVAL_PP(item), Z_STRLEN_P 788 zval **item; local [all...] |