Searched refs:keytype (Results 1 – 4 of 4) sorted by relevance
/php-src/ext/curl/tests/ |
H A D | curl_basic_027.phpt | 24 var_dump(curl_setopt($ch, CURLOPT_SSH_HOSTKEYFUNCTION, function ($ch, $keytype, $key, $keylen) { 26 var_dump($keytype);
|
/php-src/ext/com_dotnet/ |
H A D | com_wrapper.c | 429 int keytype; in generate_dispids() local 442 while (HASH_KEY_NON_EXISTENT != (keytype = in generate_dispids() 446 if (keytype == HASH_KEY_IS_LONG) { in generate_dispids() 476 while (HASH_KEY_NON_EXISTENT != (keytype = in generate_dispids() 481 if (keytype == HASH_KEY_IS_LONG) { in generate_dispids() 553 int keytype; in php_com_wrapper_export_as_sink() local 565 while (HASH_KEY_NON_EXISTENT != (keytype = in php_com_wrapper_export_as_sink() 568 if (keytype == HASH_KEY_IS_LONG) { in php_com_wrapper_export_as_sink()
|
H A D | com_variant.c | 35 int keytype; in safe_array_from_zval() local 45 keytype = zend_hash_get_current_key_ex(Z_ARRVAL_P(z), &strindex, &intindex, &pos); in safe_array_from_zval() 47 if (HASH_KEY_IS_STRING == keytype) { in safe_array_from_zval() 49 } else if (HASH_KEY_NON_EXISTENT == keytype) { in safe_array_from_zval()
|
/php-src/ext/curl/ |
H A D | interface.c | 776 static int curl_ssh_hostkeyfunction(void *clientp, int keytype, const char *key, size_t keylen) in curl_ssh_hostkeyfunction() argument 783 …fprintf(stderr, "clientp = %x, keytype = %d, key = %s, keylen = %zu\n", clientp, keytype, key, key… in curl_ssh_hostkeyfunction() 791 ZVAL_LONG(&args[1], keytype); in curl_ssh_hostkeyfunction()
|
Completed in 19 milliseconds