tkey              411 lib/tdb/pytdb.c 	TDB_DATA tkey, val;
tkey              417 lib/tdb/pytdb.c 	tkey.dptr = (unsigned char *)PyString_AsString(key);
tkey              418 lib/tdb/pytdb.c 	tkey.dsize = PyString_Size(key);
tkey              420 lib/tdb/pytdb.c 	val = tdb_fetch(self->ctx, tkey);
tkey              431 lib/tdb/pytdb.c 	TDB_DATA tkey, tval;
tkey              438 lib/tdb/pytdb.c 	tkey = PyString_AsTDB_DATA(key);
tkey              441 lib/tdb/pytdb.c 		ret = tdb_delete(self->ctx, tkey);
tkey              450 lib/tdb/pytdb.c 		ret = tdb_store(self->ctx, tkey, tval, TDB_REPLACE);
tkey              164 source3/libaddns/dnsgss.c 			struct dns_tkey_record *tkey;
tkey              184 source3/libaddns/dnsgss.c 				mem_ctx, resp->answers[0], &tkey);
tkey              187 source3/libaddns/dnsgss.c 			input_desc.length = tkey->key_length;
tkey              188 source3/libaddns/dnsgss.c 			input_desc.value = talloc_move(mem_ctx, &tkey->key);
tkey              220 source3/libaddns/dnsrecord.c 	struct dns_tkey_record *tkey;
tkey              224 source3/libaddns/dnsrecord.c 	if (!(tkey = talloc(mem_ctx, struct dns_tkey_record))) {
tkey              233 source3/libaddns/dnsrecord.c 	dns_unmarshall_domain_name(tkey, &buf, &tkey->algorithm);
tkey              236 source3/libaddns/dnsrecord.c 	dns_unmarshall_uint16(&buf, &tkey->mode);
tkey              237 source3/libaddns/dnsrecord.c 	dns_unmarshall_uint16(&buf, &tkey->error);
tkey              238 source3/libaddns/dnsrecord.c 	dns_unmarshall_uint16(&buf, &tkey->key_length);
tkey              242 source3/libaddns/dnsrecord.c 	if (tkey->key_length) {
tkey              243 source3/libaddns/dnsrecord.c 		if (!(tkey->key = TALLOC_ARRAY(tkey, uint8, tkey->key_length))) {
tkey              248 source3/libaddns/dnsrecord.c 		tkey->key = NULL;
tkey              251 source3/libaddns/dnsrecord.c 	dns_unmarshall_buffer(&buf, tkey->key, tkey->key_length);
tkey              254 source3/libaddns/dnsrecord.c 	tkey->inception = (time_t)tmp_inception;
tkey              255 source3/libaddns/dnsrecord.c 	tkey->expiration = (time_t)tmp_expiration;
tkey              257 source3/libaddns/dnsrecord.c 	*ptkey = tkey;
tkey              261 source3/libaddns/dnsrecord.c 	TALLOC_FREE(tkey);
tkey              351 source4/heimdal/kdc/kerberos4.c 	Key *tkey;
tkey              395 source4/heimdal/kdc/kerberos4.c 	ret = _kdc_get_des_key(context, tgt, TRUE, FALSE, &tkey);
tkey              419 source4/heimdal/kdc/kerberos4.c 			       address, &tkey->key, &ad);
tkey             1070 source4/heimdal/kdc/krb5tgs.c     Key *tkey;
tkey             1135 source4/heimdal/kdc/krb5tgs.c 			  ap_req.ticket.enc_part.etype, &tkey);
tkey             1160 source4/heimdal/kdc/krb5tgs.c 			      &tkey->key,
tkey             1379 source4/heimdal/kdc/krb5tgs.c     Key *tkey;
tkey             1634 source4/heimdal/kdc/krb5tgs.c 			  krbtgt_etype, &tkey);
tkey             1642 source4/heimdal/kdc/krb5tgs.c 		    client, server, ekey, &tkey->key,
tkey              122 source4/ntvfs/posix/xattr_tdb.c 	TDB_DATA tkey, tdata;
tkey              125 source4/ntvfs/posix/xattr_tdb.c 	status = get_ea_db_key(mem_ctx, attr_name, fname, fd, &tkey);
tkey              130 source4/ntvfs/posix/xattr_tdb.c 	tdata = tdb_fetch(pvfs->ea_db->tdb, tkey);
tkey              153 source4/ntvfs/posix/xattr_tdb.c 	TDB_DATA tkey, tdata;
tkey              156 source4/ntvfs/posix/xattr_tdb.c 	status = get_ea_db_key(pvfs, attr_name, fname, fd, &tkey);
tkey              164 source4/ntvfs/posix/xattr_tdb.c 	if (tdb_chainlock(pvfs->ea_db->tdb, tkey) != 0) {
tkey              165 source4/ntvfs/posix/xattr_tdb.c 		talloc_free(tkey.dptr);
tkey              174 source4/ntvfs/posix/xattr_tdb.c 	if (tdb_store(pvfs->ea_db->tdb, tkey, tdata, TDB_REPLACE) == -1) {
tkey              179 source4/ntvfs/posix/xattr_tdb.c 	tdb_chainunlock(pvfs->ea_db->tdb, tkey);
tkey              180 source4/ntvfs/posix/xattr_tdb.c 	talloc_free(tkey.dptr);
tkey              191 source4/ntvfs/posix/xattr_tdb.c 	TDB_DATA tkey;
tkey              194 source4/ntvfs/posix/xattr_tdb.c 	status = get_ea_db_key(NULL, attr_name, fname, fd, &tkey);
tkey              199 source4/ntvfs/posix/xattr_tdb.c 	if (tdb_delete(pvfs->ea_db->tdb, tkey) == -1) {
tkey              200 source4/ntvfs/posix/xattr_tdb.c 		talloc_free(tkey.dptr);
tkey              204 source4/ntvfs/posix/xattr_tdb.c 	talloc_free(tkey.dptr);