Home
last modified time | relevance | path

Searched refs:hashstr (Results 1 – 7 of 7) sorted by relevance

/external/grpc-grpc/src/php/ext/grpc/
Dchannel_credentials.c47 if (p->hashstr != NULL) {
48 free(p->hashstr);
49 p->hashstr = NULL;
69 char *hashstr, in grpc_php_wrap_channel_credentials() argument
78 credentials->hashstr = hashstr; in grpc_php_wrap_channel_credentials()
156 char *hashstr = malloc(41); in PHP_METHOD() local
157 generate_sha1_str(hashstr, hashkey, hashkey_len); in PHP_METHOD()
162 zval *creds_object = grpc_php_wrap_channel_credentials(creds, hashstr, false in PHP_METHOD()
197 php_grpc_int cred1_len = strlen(cred1->hashstr); in PHP_METHOD()
199 strcpy(cred1_hashstr, cred1->hashstr); in PHP_METHOD()
Dchannel.c381 if (creds != NULL && creds->hashstr != NULL) { in PHP_METHOD()
382 key_len += strlen(creds->hashstr); in PHP_METHOD()
387 if (creds != NULL && creds->hashstr != NULL) { in PHP_METHOD()
388 strcat(key, creds->hashstr); in PHP_METHOD()
396 if (creds != NULL && creds->hashstr != NULL) { in PHP_METHOD()
397 php_grpc_int creds_hashstr_len = strlen(creds->hashstr); in PHP_METHOD()
399 strcpy(channel_creds_hashstr, creds->hashstr); in PHP_METHOD()
419 (creds != NULL && creds->hashstr != NULL && in PHP_METHOD()
420 strcmp(creds->hashstr, le->channel->creds_hashstr) != 0)) { in PHP_METHOD()
Dchannel_credentials.h33 char *hashstr;
/external/e2fsprogs/lib/e2p/
DMakefile.in20 getflags.o getversion.o hashstr.o iod.o ls.o ljs.o mntopts.o \
27 $(srcdir)/getversion.c $(srcdir)/hashstr.c $(srcdir)/iod.c \
147 hashstr.o: $(srcdir)/hashstr.c $(top_builddir)/lib/config.h \
DAndroid.bp19 "hashstr.c",
/external/lua/src/
Dltable.c60 #define hashstr(t,str) hashpow2(t, (str)->hash) macro
124 return hashstr(t, tsvalue(key)); in mainposition()
540 Node *n = hashstr(t, key); in luaH_getshortstr()
/external/python/cpython2/Objects/
Dclassobject.c965 static PyObject *hashstr, *eqstr, *cmpstr; in instance_hash() local
967 if (hashstr == NULL) { in instance_hash()
968 hashstr = PyString_InternFromString("__hash__"); in instance_hash()
969 if (hashstr == NULL) in instance_hash()
972 func = instance_getattr(inst, hashstr); in instance_hash()