Lines Matching refs:tmp

230 	char tmp[32];  in PHP_MINFO_FUNCTION()  local
241 snprintf(tmp, 31, "%ld/unlimited", LDAPG(num_links)); in PHP_MINFO_FUNCTION()
243 snprintf(tmp, 31, "%ld/%ld", LDAPG(num_links), LDAPG(max_links)); in PHP_MINFO_FUNCTION()
245 php_info_print_table_row(2, "Total Links", tmp); in PHP_MINFO_FUNCTION()
248 snprintf(tmp, 31, "%d", LDAP_API_VERSION); in PHP_MINFO_FUNCTION()
249 php_info_print_table_row(2, "API Version", tmp); in PHP_MINFO_FUNCTION()
257 snprintf(tmp, 31, "%d", LDAP_VENDOR_VERSION); in PHP_MINFO_FUNCTION()
258 php_info_print_table_row(2, "Vendor Version", tmp); in PHP_MINFO_FUNCTION()
263 snprintf(tmp, 31, "%F", SDKVersion/100.0); in PHP_MINFO_FUNCTION()
264 php_info_print_table_row(2, "SDK Version", tmp); in PHP_MINFO_FUNCTION()
266 snprintf(tmp, 31, "%F", ver.protocol_version/100.0); in PHP_MINFO_FUNCTION()
267 php_info_print_table_row(2, "Highest LDAP Protocol Supported", tmp); in PHP_MINFO_FUNCTION()
269 snprintf(tmp, 31, "%F", ver.SSL_version/100.0); in PHP_MINFO_FUNCTION()
270 php_info_print_table_row(2, "SSL Level Supported", tmp); in PHP_MINFO_FUNCTION()
273 snprintf(tmp, 31, "%d", ver.security_level); in PHP_MINFO_FUNCTION()
275 strcpy(tmp, "SSL not enabled"); in PHP_MINFO_FUNCTION()
277 php_info_print_table_row(2, "Level of Encryption", tmp); in PHP_MINFO_FUNCTION()
1119 zval *tmp; in PHP_FUNCTION() local
1142 MAKE_STD_ZVAL(tmp); in PHP_FUNCTION()
1143 array_init(tmp); in PHP_FUNCTION()
1144 add_assoc_long(tmp, "count", num_values); in PHP_FUNCTION()
1146 add_index_stringl(tmp, i, ldap_value[i]->bv_val, ldap_value[i]->bv_len, 1); in PHP_FUNCTION()
1150 …zend_hash_update(Z_ARRVAL_P(return_value), attribute, strlen(attribute)+1, (void *) &tmp, sizeof(z… in PHP_FUNCTION()