Home
last modified time | relevance | path

Searched refs:j_key (Results 1 – 2 of 2) sorted by relevance

/titanic_50/usr/src/cmd/sendmail/db/db/
H A Ddb_join.c95 if ((ret = __os_malloc(256, NULL, &jc->j_key.data)) != 0)
97 jc->j_key.ulen = 256;
98 F_SET(&jc->j_key, DB_DBT_USERMEM);
190 &jc->j_key, key, jc->j_init ? DB_CURRENT : DB_NEXT_DUP);
193 jc->j_key.ulen <<= 1;
194 if ((ret = __os_realloc(&jc->j_key.data, jc->j_key.ulen)) != 0)
209 &jc->j_key, key, DB_GET_BOTH)) == DB_NOTFOUND)
212 jc->j_key.ulen <<= 1;
213 if ((ret = __os_realloc(&jc->j_key.data,
214 jc->j_key.ulen)) != 0)
[all …]
/titanic_50/usr/src/cmd/sendmail/db/include/
H A Ddb_join.h23 DBT j_key; /* Used to do lookups. */ member