Searched defs:item (Results 1 - 13 of 13) sorted by relevance

/PHP_5_4/ext/com_dotnet/
H A Dcom_variant.c46 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_4/ext/interbase/
H A Dibase_blobs.c175 int item = *p++; local
179 switch (item) {
H A Dibase_query.c1573 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_5_4/ext/mysqli/
H A Dmysqli_embedded.c61 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_4/ext/pdo/
H A Dpdo_dbh.c134 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));
514 zval *options = NULL, **opt, **item, *ctor_args; local
526 if (Z_TYPE_PP(opt) != IS_ARRAY || zend_hash_index_find(Z_ARRVAL_PP(opt), 0, (void**)&item) == FAILURE
527 || Z_TYPE_PP(item) != IS_STRING
528 || zend_lookup_class(Z_STRVAL_PP(item), Z_STRLEN_P
785 zval **item; local
[all...]
/PHP_5_4/ext/pdo_firebird/
H A Dfirebird_statement.c248 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_5_4/ext/soap/
H A Dphp_encoding.c2241 xmlNodeSetName(xparam, BAD_CAST("item"));
2265 xmlNodeSetName(xparam, BAD_CAST("item"));
2795 xmlNodePtr xparam, item; local
2802 item = xmlNewNode(NULL, BAD_CAST("item"));
2803 xmlAddChild(xmlParam, item);
2805 xmlAddChild(item,key);
2824 xparam = master_to_xml(get_conversion((*temp_data)->type), (*temp_data), style, item TSRMLS_CC);
2840 xmlNodePtr trav, item, xmlKey, xmlValue; local
2850 FOREACHNODE(trav, "item", ite
[all...]
/PHP_5_4/ext/standard/
H A Dproc_open.c471 zval **item; local
472 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(other_options), "suppress_errors", sizeof("suppress_errors"), (void**)&item)) {
473 if ((Z_TYPE_PP(item) == IS_BOOL || Z_TYPE_PP(item) == IS_LONG) &&
474 Z_LVAL_PP(item)) {
478 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(other_options), "bypass_shell", sizeof("bypass_shell"), (void**)&item)) {
479 if ((Z_TYPE_PP(item) == IS_BOOL || Z_TYPE_PP(item) == IS_LONG) &&
480 Z_LVAL_PP(item)) {
549 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Descriptor item mus
[all...]
H A Dstring.c532 /* {{{ 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_5_4/ext/sysvmsg/
H A Dsysvmsg.c170 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_4/ext/sqlite3/
H A Dsqlite3.c2002 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_5_4/ext/openssl/
H A Dopenssl.c770 if (optional_args && zend_hash_find(Z_ARRVAL_P(optional_args), key, sizeof(key), (void**)&item) == SUCCESS) \
771 varname = Z_STRVAL_PP(item); \
776 if (optional_args && zend_hash_find(Z_ARRVAL_P(optional_args), key, sizeof(key), (void**)&item) == SUCCESS) \
777 varname = Z_LVAL_PP(item); \
787 zval ** item; local
821 if (optional_args && zend_hash_find(Z_ARRVAL_P(optional_args), "encrypt_key", sizeof("encrypt_key"), (void**)&item) == SUCCESS) {
822 req->priv_key_encrypt = Z_BVAL_PP(item);
835 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) {
836 long cipher_algo = Z_LVAL_PP(item);
1674 zval ** item; local
1840 zval ** item; local
1921 zval ** item; local
2110 zval ** item; local
[all...]
/PHP_5_4/ext/gd/
H A Dgd.c1619 zval ** item; local
1621 if (zend_hash_get_current_data_ex(HASH_OF(styles), (void **) &item, &pos) == FAILURE) {
1625 convert_to_long_ex(item);
1627 stylearr[index++] = Z_LVAL_PP(item);
3976 zval ** item; local
3984 if (zend_hash_get_current_data_ex(HASH_OF(EXT), (void **) &item, &pos) == FAILURE) {
3989 convert_to_double_ex(item);
3991 strex.linespacing = Z_DVAL_PP(item);

Completed in 42 milliseconds