| /PHP_5_3/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_5_3/ext/interbase/ |
| H A D | ibase_blobs.c | 175 int item = *p++; local 179 switch (item) {
|
| H A D | ibase_query.c | 1578 char item = bl_info[i++]; local 1580 if (item == isc_info_end || item == isc_info_truncated || 1581 item == isc_info_error || i >= sizeof(bl_info)) { 1590 if (item == isc_info_blob_total_length) {
|
| /PHP_5_3/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_5_3/ext/openssl/ |
| H A D | openssl.c | 758 if (optional_args && zend_hash_find(Z_ARRVAL_P(optional_args), key, sizeof(key), (void**)&item) == SUCCESS) \ 759 varname = Z_STRVAL_PP(item); \ 764 if (optional_args && zend_hash_find(Z_ARRVAL_P(optional_args), key, sizeof(key), (void**)&item) == SUCCESS) \ 765 varname = Z_LVAL_PP(item); \ 772 zval ** item; local 806 if (optional_args && zend_hash_find(Z_ARRVAL_P(optional_args), "encrypt_key", sizeof("encrypt_key"), (void**)&item) == SUCCESS) { 807 req->priv_key_encrypt = Z_BVAL_PP(item); 1602 zval ** item; local 1605 if (zend_hash_get_current_data_ex(HASH_OF(calist), (void**)&item, &pos) == FAILURE) { 1608 convert_to_string_ex(item); 1768 zval ** item; local 1853 zval ** item; local 2042 zval ** item; local [all...] |
| /PHP_5_3/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)); 512 zval *options = NULL, **opt, **item, *ctor_args; local 524 if (Z_TYPE_PP(opt) != IS_ARRAY || zend_hash_index_find(Z_ARRVAL_PP(opt), 0, (void**)&item) == FAILURE 525 || Z_TYPE_PP(item) != IS_STRING 526 || zend_lookup_class(Z_STRVAL_PP(item), Z_STRLEN_P 779 zval **item; local [all...] |
| /PHP_5_3/ext/soap/ |
| H A D | php_encoding.c | 2257 xmlNodeSetName(xparam, BAD_CAST("item")); 2281 xmlNodeSetName(xparam, BAD_CAST("item")); 2814 xmlNodePtr xparam, item; local 2821 item = xmlNewNode(NULL, BAD_CAST("item")); 2822 xmlAddChild(xmlParam, item); 2824 xmlAddChild(item,key); 2843 xparam = master_to_xml(get_conversion((*temp_data)->type), (*temp_data), style, item); 2859 xmlNodePtr trav, item, xmlKey, xmlValue; local 2869 FOREACHNODE(trav, "item", ite [all...] |
| /PHP_5_3/ext/sqlite3/ |
| H A D | sqlite3.c | 1990 static void php_sqlite3_free_list_dtor(void **item) argument 1992 php_sqlite3_free_list *free_item = (php_sqlite3_free_list *)*item; 1998 efree(*item);
|
| /PHP_5_3/ext/standard/ |
| H A D | proc_open.c | 547 zval **item; local 548 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(other_options), "suppress_errors", sizeof("suppress_errors"), (void**)&item)) { 549 if ((Z_TYPE_PP(item) == IS_BOOL || Z_TYPE_PP(item) == IS_LONG) && 550 Z_LVAL_PP(item)) { 554 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(other_options), "bypass_shell", sizeof("bypass_shell"), (void**)&item)) { 555 if ((Z_TYPE_PP(item) == IS_BOOL || Z_TYPE_PP(item) == IS_LONG) && 556 Z_LVAL_PP(item)) { 625 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Descriptor item mus [all...] |
| H A D | string.c | 459 /* {{{ proto string nl_langinfo(int item) 463 long item; local 466 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &item) == FAILURE) { 470 switch(item) { /* {{{ */ 631 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Item '%ld' is not valid", item); 636 value = nl_langinfo(item);
|
| /PHP_5_3/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_5_3/ext/gd/ |
| H A D | gd.c | 1599 zval ** item; local 1601 if (zend_hash_get_current_data_ex(HASH_OF(styles), (void **) &item, &pos) == FAILURE) { 1605 convert_to_long_ex(item); 1607 stylearr[index++] = Z_LVAL_PP(item); 3934 zval ** item; local 3942 if (zend_hash_get_current_data_ex(HASH_OF(EXT), (void **) &item, &pos) == FAILURE) { 3947 convert_to_double_ex(item); 3949 strex.linespacing = Z_DVAL_PP(item);
|
| /PHP_5_3/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) {
|