Searched refs:hashstr (Results 1 – 7 of 7) sorted by relevance
/external/grpc-grpc/src/php/ext/grpc/ |
D | channel_credentials.c | 47 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()
|
D | channel.c | 381 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()
|
D | channel_credentials.h | 33 char *hashstr;
|
/external/e2fsprogs/lib/e2p/ |
D | Makefile.in | 20 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 \
|
D | Android.bp | 19 "hashstr.c",
|
/external/lua/src/ |
D | ltable.c | 60 #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/ |
D | classobject.c | 965 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()
|