item             6060 Zend/zend_compile.c void zend_init_list(void *result, void *item TSRMLS_DC) /* {{{ */
item             6064 Zend/zend_compile.c 	list[0] = item;
item             6071 Zend/zend_compile.c void zend_add_to_list(void *result, void *item TSRMLS_DC) /* {{{ */
item             6084 Zend/zend_compile.c 	list[n]   = item;
item              609 Zend/zend_compile.h void zend_init_list(void *result, void *item TSRMLS_DC);
item              610 Zend/zend_compile.h void zend_add_to_list(void *result, void *item TSRMLS_DC);
item               46 ext/com_dotnet/com_variant.c 	zval **item;
item               76 ext/com_dotnet/com_variant.c 		if (FAILURE == zend_hash_get_current_data_ex(HASH_OF(z), (void**)&item, &pos)) {
item               80 ext/com_dotnet/com_variant.c 		php_com_variant_from_zval(&va[intindex], *item, codepage TSRMLS_CC);		
item               44 ext/dom/domimplementationlist.c 	PHP_FALIAS(item, dom_domimplementationlist_item, arginfo_dom_implementationlist_item)
item               44 ext/dom/domstringlist.c 	PHP_FALIAS(item, dom_domstringlist_item, arginfo_dom_stringlist_item)
item               73 ext/dom/namednodemap.c 	PHP_FALIAS(item, dom_namednodemap_item, arginfo_dom_namednodemap_item)
item               45 ext/dom/nodelist.c 	PHP_FALIAS(item, dom_nodelist_item, arginfo_dom_nodelist_item)
item             1555 ext/gd/gd.c    		zval ** item;
item             1557 ext/gd/gd.c    		if (zend_hash_get_current_data_ex(HASH_OF(styles), (void **) &item, &pos) == FAILURE) {
item             1561 ext/gd/gd.c    		if (Z_TYPE_PP(item) != IS_LONG) {
item             1563 ext/gd/gd.c    			lval = **item;
item             1568 ext/gd/gd.c    			stylearr[index++] = Z_LVAL_PP(item);
item             3858 ext/gd/gd.c    			zval ** item;
item             3866 ext/gd/gd.c    			if (zend_hash_get_current_data_ex(HASH_OF(EXT), (void **) &item, &pos) == FAILURE) {
item             3871 ext/gd/gd.c    				convert_to_double_ex(item);
item             3873 ext/gd/gd.c    				strex.linespacing = Z_DVAL_PP(item);
item              173 ext/interbase/ibase_blobs.c 		int item = *p++;
item              177 ext/interbase/ibase_blobs.c 		switch (item) {
item             1571 ext/interbase/ibase_query.c 							char item = bl_info[i++];
item             1573 ext/interbase/ibase_query.c 							if (item == isc_info_end || item == isc_info_truncated || 
item             1574 ext/interbase/ibase_query.c 								item == isc_info_error || i >= sizeof(bl_info)) {
item             1583 ext/interbase/ibase_query.c 							if (item == isc_info_blob_total_length) {
item               61 ext/mysqli/mysqli_embedded.c 			zval **item;
item               63 ext/mysqli/mysqli_embedded.c 			if (zend_hash_get_current_data_ex(HASH_OF(args), (void **) &item, &pos) == FAILURE) {
item               67 ext/mysqli/mysqli_embedded.c 			convert_to_string_ex(item);
item               69 ext/mysqli/mysqli_embedded.c 			arguments[++index] = Z_STRVAL_PP(item);
item               82 ext/mysqli/mysqli_embedded.c 			zval ** item;
item               84 ext/mysqli/mysqli_embedded.c 			if (zend_hash_get_current_data_ex(HASH_OF(grps), (void **) &item, &pos) == FAILURE) {
item               88 ext/mysqli/mysqli_embedded.c 			convert_to_string_ex(item);
item               90 ext/mysqli/mysqli_embedded.c 			groups[++index] = Z_STRVAL_PP(item);
item              845 ext/openssl/openssl.c 	if (optional_args && zend_hash_find(Z_ARRVAL_P(optional_args), key, sizeof(key), (void**)&item) == SUCCESS && Z_TYPE_PP(item) == IS_STRING) \
item              846 ext/openssl/openssl.c 		varname = Z_STRVAL_PP(item); \
item              851 ext/openssl/openssl.c 	if (optional_args && zend_hash_find(Z_ARRVAL_P(optional_args), key, sizeof(key), (void**)&item) == SUCCESS && Z_TYPE_PP(item) == IS_LONG) \
item              852 ext/openssl/openssl.c 		varname = Z_LVAL_PP(item); \
item              863 ext/openssl/openssl.c 	zval ** item;
item              897 ext/openssl/openssl.c 	if (optional_args && zend_hash_find(Z_ARRVAL_P(optional_args), "encrypt_key", sizeof("encrypt_key"), (void**)&item) == SUCCESS) {
item              898 ext/openssl/openssl.c 		req->priv_key_encrypt = Z_BVAL_PP(item);
item              911 ext/openssl/openssl.c 	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 
item              912 ext/openssl/openssl.c 		&& Z_TYPE_PP(item) == IS_LONG) {
item              913 ext/openssl/openssl.c 		long cipher_algo = Z_LVAL_PP(item);
item             2225 ext/openssl/openssl.c 			zval ** item;
item             2228 ext/openssl/openssl.c 			if (zend_hash_get_current_data_ex(HASH_OF(calist), (void**)&item, &pos) == FAILURE) {
item             2231 ext/openssl/openssl.c 			convert_to_string_ex(item);
item             2233 ext/openssl/openssl.c 			if (VCWD_STAT(Z_STRVAL_PP(item), &sb) == -1) {
item             2234 ext/openssl/openssl.c 				php_error_docref(NULL TSRMLS_CC, E_WARNING, "unable to stat %s", Z_STRVAL_PP(item));
item             2240 ext/openssl/openssl.c 				if (file_lookup == NULL || !X509_LOOKUP_load_file(file_lookup, Z_STRVAL_PP(item), X509_FILETYPE_PEM)) {
item             2241 ext/openssl/openssl.c 					php_error_docref(NULL TSRMLS_CC, E_WARNING, "error loading file %s", Z_STRVAL_PP(item));
item             2248 ext/openssl/openssl.c 				if (dir_lookup == NULL || !X509_LOOKUP_add_dir(dir_lookup, Z_STRVAL_PP(item), X509_FILETYPE_PEM)) {
item             2249 ext/openssl/openssl.c 					php_error_docref(NULL TSRMLS_CC, E_WARNING, "error loading directory %s", Z_STRVAL_PP(item));
item             2391 ext/openssl/openssl.c 	zval ** item;
item             2418 ext/openssl/openssl.c 	if (args && zend_hash_find(Z_ARRVAL_P(args), "friendly_name", sizeof("friendly_name"), (void**)&item) == SUCCESS && Z_TYPE_PP(item) == IS_STRING)
item             2419 ext/openssl/openssl.c 		friendly_name = Z_STRVAL_PP(item);
item             2425 ext/openssl/openssl.c 	if (args && zend_hash_find(Z_ARRVAL_P(args), "extracerts", sizeof("extracerts"), (void**)&item) == SUCCESS)
item             2426 ext/openssl/openssl.c 		ca = php_array_to_X509_sk(item TSRMLS_CC);
item             2472 ext/openssl/openssl.c 	zval ** item;
item             2496 ext/openssl/openssl.c 	if (args && zend_hash_find(Z_ARRVAL_P(args), "friendly_name", sizeof("friendly_name"), (void**)&item) == SUCCESS && Z_TYPE_PP(item) == IS_STRING)
item             2497 ext/openssl/openssl.c 		friendly_name = Z_STRVAL_PP(item);
item             2499 ext/openssl/openssl.c 	if (args && zend_hash_find(Z_ARRVAL_P(args), "extracerts", sizeof("extracerts"), (void**)&item) == SUCCESS)
item             2500 ext/openssl/openssl.c 		ca = php_array_to_X509_sk(item TSRMLS_CC);
item             2669 ext/openssl/openssl.c 		zval ** item;
item             2674 ext/openssl/openssl.c 		while(zend_hash_get_current_data_ex(HASH_OF(dn), (void**)&item, &hpos) == SUCCESS) {
item             2681 ext/openssl/openssl.c 			convert_to_string_ex(item);
item             2689 ext/openssl/openssl.c 								(unsigned char*)Z_STRVAL_PP(item), -1, -1, 0))
item             2695 ext/openssl/openssl.c 							nid, Z_STRVAL_PP(item));
item             2755 ext/openssl/openssl.c 			while(zend_hash_get_current_data_ex(HASH_OF(attribs), (void**)&item, &hpos) == SUCCESS) {
item             2761 ext/openssl/openssl.c 				convert_to_string_ex(item);
item             2768 ext/openssl/openssl.c 						if (!X509_NAME_add_entry_by_NID(subj, nid, MBSTRING_UTF8, (unsigned char*)Z_STRVAL_PP(item), -1, -1, 0)) {
item             2769 ext/openssl/openssl.c 							php_error_docref(NULL TSRMLS_CC, E_WARNING, "attribs: add_entry_by_NID %d -> %s (failed)", nid, Z_STRVAL_PP(item));
item              134 ext/pdo/pdo_dbh.c 			zval **item;
item              136 ext/pdo/pdo_dbh.c 			if (SUCCESS == zend_hash_index_find(Z_ARRVAL_P(info), 1, (void**)&item)) {
item              137 ext/pdo/pdo_dbh.c 				native_code = Z_LVAL_PP(item);
item              140 ext/pdo/pdo_dbh.c 			if (SUCCESS == zend_hash_index_find(Z_ARRVAL_P(info), 2, (void**)&item)) {
item              141 ext/pdo/pdo_dbh.c 				supp = estrndup(Z_STRVAL_PP(item), Z_STRLEN_PP(item));
item              511 ext/pdo/pdo_dbh.c 	zval *options = NULL, **opt, **item, *ctor_args;
item              523 ext/pdo/pdo_dbh.c 		if (Z_TYPE_PP(opt) != IS_ARRAY || zend_hash_index_find(Z_ARRVAL_PP(opt), 0, (void**)&item) == FAILURE
item              524 ext/pdo/pdo_dbh.c 			|| Z_TYPE_PP(item) != IS_STRING
item              525 ext/pdo/pdo_dbh.c 			|| zend_lookup_class(Z_STRVAL_PP(item), Z_STRLEN_PP(item), &pce TSRMLS_CC) == FAILURE
item              547 ext/pdo/pdo_dbh.c 		if (zend_hash_index_find(Z_ARRVAL_PP(opt), 1, (void**)&item) == SUCCESS) {
item              548 ext/pdo/pdo_dbh.c 			if (Z_TYPE_PP(item) != IS_ARRAY) {
item              556 ext/pdo/pdo_dbh.c 			ctor_args = *item;
item              782 ext/pdo/pdo_dbh.c 			zval **item;
item              792 ext/pdo/pdo_dbh.c 				|| zend_hash_index_find(Z_ARRVAL_P(value), 0, (void**)&item) == FAILURE
item              793 ext/pdo/pdo_dbh.c 				|| Z_TYPE_PP(item) != IS_STRING
item              794 ext/pdo/pdo_dbh.c 				|| zend_lookup_class(Z_STRVAL_PP(item), Z_STRLEN_PP(item), &pce TSRMLS_CC) == FAILURE
item              820 ext/pdo/pdo_dbh.c 			if (zend_hash_index_find(Z_ARRVAL_P(value), 1, (void**)&item) == SUCCESS) {
item              821 ext/pdo/pdo_dbh.c 				if (Z_TYPE_PP(item) != IS_ARRAY) {
item              829 ext/pdo/pdo_dbh.c 				Z_ADDREF_PP(item);
item              830 ext/pdo/pdo_dbh.c 				dbh->def_stmt_ctor_args = *item;
item              246 ext/pdo_firebird/firebird_statement.c 		char item = bl_info[i++];
item              248 ext/pdo_firebird/firebird_statement.c 		if (item == isc_info_end || item == isc_info_truncated || item == isc_info_error
item              256 ext/pdo_firebird/firebird_statement.c 		if (item == isc_info_blob_total_length) {
item             2791 ext/soap/php_encoding.c 			xmlNodePtr xparam, item;
item             2798 ext/soap/php_encoding.c 			item = xmlNewNode(NULL, BAD_CAST("item"));
item             2799 ext/soap/php_encoding.c 			xmlAddChild(xmlParam, item);
item             2801 ext/soap/php_encoding.c 			xmlAddChild(item,key);
item             2820 ext/soap/php_encoding.c 			xparam = master_to_xml(get_conversion((*temp_data)->type), (*temp_data), style, item TSRMLS_CC);
item             2836 ext/soap/php_encoding.c 	xmlNodePtr trav, item, xmlKey, xmlValue;
item             2846 ext/soap/php_encoding.c 		FOREACHNODE(trav, "item", item) {
item             2847 ext/soap/php_encoding.c 			xmlKey = get_node(item->children, "key");
item             2852 ext/soap/php_encoding.c 			xmlValue = get_node(item->children, "value");
item             2054 ext/sqlite3/sqlite3.c static void php_sqlite3_free_list_dtor(void **item)
item             2056 ext/sqlite3/sqlite3.c 	php_sqlite3_free_list *free_item = (php_sqlite3_free_list *)*item;
item             2062 ext/sqlite3/sqlite3.c 	efree(*item);
item             2150 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, item)
item              506 ext/standard/proc_open.c 		zval **item;
item              507 ext/standard/proc_open.c 		if (SUCCESS == zend_hash_find(Z_ARRVAL_P(other_options), "suppress_errors", sizeof("suppress_errors"), (void**)&item)) {
item              508 ext/standard/proc_open.c 			if ((Z_TYPE_PP(item) == IS_BOOL || Z_TYPE_PP(item) == IS_LONG) &&
item              509 ext/standard/proc_open.c 			    Z_LVAL_PP(item)) {
item              513 ext/standard/proc_open.c 		if (SUCCESS == zend_hash_find(Z_ARRVAL_P(other_options), "bypass_shell", sizeof("bypass_shell"), (void**)&item)) {
item              514 ext/standard/proc_open.c 			if ((Z_TYPE_PP(item) == IS_BOOL || Z_TYPE_PP(item) == IS_LONG) &&
item              515 ext/standard/proc_open.c 			    Z_LVAL_PP(item)) {
item              542 ext/standard/string.c 	long item;
item              545 ext/standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &item) == FAILURE) {
item              549 ext/standard/string.c 	switch(item) { /* {{{ */
item              710 ext/standard/string.c 			php_error_docref(NULL TSRMLS_CC, E_WARNING, "Item '%ld' is not valid", item);
item              715 ext/standard/string.c 	value = nl_langinfo(item);
item              170 ext/sysvmsg/sysvmsg.c 		zval **item;
item              173 ext/sysvmsg/sysvmsg.c 		if (zend_hash_find(Z_ARRVAL_P(data), "msg_perm.uid", sizeof("msg_perm.uid"), (void **) &item) == SUCCESS) {
item              174 ext/sysvmsg/sysvmsg.c 			convert_to_long_ex(item);
item              175 ext/sysvmsg/sysvmsg.c 			stat.msg_perm.uid = Z_LVAL_PP(item);
item              177 ext/sysvmsg/sysvmsg.c 		if (zend_hash_find(Z_ARRVAL_P(data), "msg_perm.gid", sizeof("msg_perm.gid"), (void **) &item) == SUCCESS) {
item              178 ext/sysvmsg/sysvmsg.c 			convert_to_long_ex(item);
item              179 ext/sysvmsg/sysvmsg.c 			stat.msg_perm.gid = Z_LVAL_PP(item);
item              181 ext/sysvmsg/sysvmsg.c 		if (zend_hash_find(Z_ARRVAL_P(data), "msg_perm.mode", sizeof("msg_perm.mode"), (void **) &item) == SUCCESS) {
item              182 ext/sysvmsg/sysvmsg.c 			convert_to_long_ex(item);
item              183 ext/sysvmsg/sysvmsg.c 			stat.msg_perm.mode = Z_LVAL_PP(item);
item              185 ext/sysvmsg/sysvmsg.c 		if (zend_hash_find(Z_ARRVAL_P(data), "msg_qbytes", sizeof("msg_qbytes"), (void **) &item) == SUCCESS) {
item              186 ext/sysvmsg/sysvmsg.c 			convert_to_long_ex(item);
item              187 ext/sysvmsg/sysvmsg.c 			stat.msg_qbytes = Z_LVAL_PP(item);
item              542 sapi/roxen/roxen.c       ind = &indices->item[i];