hash_len 69 ext/mysqli/mysqli_nonapi.c uint hash_len; hash_len 161 ext/mysqli/mysqli_nonapi.c hash_len = spprintf(&hash_key, 0, "mysqli_%s_%s%ld%s%s%s", SAFE_STR(hostname), SAFE_STR(socket), hash_len 168 ext/mysqli/mysqli_nonapi.c if (zend_hash_find(&EG(persistent_list), hash_key, hash_len + 1, (void **)&le) == SUCCESS) { hash_len 202 ext/mysqli/mysqli_nonapi.c zend_hash_update(&EG(persistent_list), hash_key, hash_len + 1, (void *)&le, sizeof(le), NULL); hash_len 126 ext/spl/spl_observer.c int hash_len = Z_STRLEN_P(rv); hash_len 127 ext/spl/spl_observer.c char *hash = emalloc((hash_len+1)*sizeof(char)); hash_len 128 ext/spl/spl_observer.c strncpy(hash, Z_STRVAL_P(rv), hash_len); hash_len 129 ext/spl/spl_observer.c hash[hash_len] = 0; hash_len 133 ext/spl/spl_observer.c *hash_len_ptr = hash_len; hash_len 146 ext/spl/spl_observer.c int hash_len = sizeof(zend_object_value); hash_len 151 ext/spl/spl_observer.c *hash_len_ptr = hash_len; hash_len 156 ext/spl/spl_observer.c char *hash = emalloc(hash_len + 1); hash_len 163 ext/spl/spl_observer.c memcpy(hash, (char *)&zvalue, hash_len); hash_len 164 ext/spl/spl_observer.c hash[hash_len] = 0; hash_len 167 ext/spl/spl_observer.c *hash_len_ptr = hash_len; hash_len 193 ext/spl/spl_observer.c spl_SplObjectStorageElement* spl_object_storage_get(spl_SplObjectStorage *intern, char *hash, int hash_len TSRMLS_DC) /* {{{ */ hash_len 196 ext/spl/spl_observer.c if (zend_hash_find(&intern->storage, hash, hash_len, (void**)&element) == SUCCESS) { hash_len 207 ext/spl/spl_observer.c int hash_len; hash_len 208 ext/spl/spl_observer.c char *hash = spl_object_storage_get_hash(intern, this, obj, &hash_len TSRMLS_CC); hash_len 213 ext/spl/spl_observer.c pelement = spl_object_storage_get(intern, hash, hash_len TSRMLS_CC); hash_len 229 ext/spl/spl_observer.c zend_hash_update(&intern->storage, hash, hash_len, &element, sizeof(spl_SplObjectStorageElement), NULL); hash_len 235 ext/spl/spl_observer.c int hash_len, ret = FAILURE; hash_len 236 ext/spl/spl_observer.c char *hash = spl_object_storage_get_hash(intern, this, obj, &hash_len TSRMLS_CC); hash_len 240 ext/spl/spl_observer.c ret = zend_hash_del(&intern->storage, hash, hash_len); hash_len 431 ext/spl/spl_observer.c int hash_len, found; hash_len 432 ext/spl/spl_observer.c char *hash = spl_object_storage_get_hash(intern, this, obj, &hash_len TSRMLS_CC); hash_len 437 ext/spl/spl_observer.c found = zend_hash_exists(&intern->storage, hash, hash_len); hash_len 498 ext/spl/spl_observer.c int hash_len; hash_len 504 ext/spl/spl_observer.c hash = spl_object_storage_get_hash(intern, getThis(), obj, &hash_len TSRMLS_CC); hash_len 509 ext/spl/spl_observer.c element = spl_object_storage_get(intern, hash, hash_len TSRMLS_CC); hash_len 848 ext/spl/spl_observer.c int hash_len; hash_len 877 ext/spl/spl_observer.c hash = spl_object_storage_get_hash(intern, getThis(), pentry, &hash_len TSRMLS_CC); hash_len 883 ext/spl/spl_observer.c pelement = spl_object_storage_get(intern, hash, hash_len TSRMLS_CC); hash_len 178 ext/standard/password.c int hash_len; hash_len 182 ext/standard/password.c if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &hash, &hash_len) == FAILURE) { hash_len 186 ext/standard/password.c if (hash_len < 0) { hash_len 194 ext/standard/password.c algo = php_password_determine_algo(hash, (size_t) hash_len); hash_len 221 ext/standard/password.c int hash_len; hash_len 226 ext/standard/password.c if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl|H", &hash, &hash_len, &new_algo, &options) == FAILURE) { hash_len 230 ext/standard/password.c if (hash_len < 0) { hash_len 235 ext/standard/password.c algo = php_password_determine_algo(hash, (size_t) hash_len); hash_len 276 ext/standard/password.c int password_len, hash_len; hash_len 279 ext/standard/password.c if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &password, &password_len, &hash, &hash_len) == FAILURE) { hash_len 282 ext/standard/password.c if (php_crypt(password, password_len, hash, hash_len, &ret) == FAILURE) { hash_len 286 ext/standard/password.c if (strlen(ret) != hash_len || hash_len < 13) { hash_len 295 ext/standard/password.c for (i = 0; i < hash_len; i++) { hash_len 312 ext/standard/password.c int password_len = 0, hash_len; hash_len 436 ext/standard/password.c hash_len = (int) (hash_format_len + salt_len); hash_len 438 ext/standard/password.c if (php_crypt(password, password_len, hash, hash_len, &result) == FAILURE) {