lh 649 source4/lib/registry/regf.c struct lh_block lh;
lh 655 source4/lib/registry/regf.c if (NT_STATUS_IS_ERR(tdr_pull_lh_block(pull, nk, &lh))) {
lh 661 source4/lib/registry/regf.c SMB_ASSERT(!strncmp(lh.header, "lh", 2));
lh 663 source4/lib/registry/regf.c if (lh.key_count != nk->num_subkeys) {
lh 667 source4/lib/registry/regf.c key_off = lh.hr[idx].nk_offset;
lh 720 source4/lib/registry/regf.c struct lh_block lh;
lh 726 source4/lib/registry/regf.c &lh))) {
lh 731 source4/lib/registry/regf.c SMB_ASSERT(!strncmp(lh.header, "lh", 2));
lh 734 source4/lib/registry/regf.c if (idx >= sublist_count + lh.key_count) {
lh 735 source4/lib/registry/regf.c sublist_count += lh.key_count;
lh 738 source4/lib/registry/regf.c key_off = lh.hr[idx - sublist_count].nk_offset;
lh 739 source4/lib/registry/regf.c sublist_count += lh.key_count;
lh 911 source4/lib/registry/regf.c struct lh_block lh;
lh 919 source4/lib/registry/regf.c if (NT_STATUS_IS_ERR(tdr_pull_lh_block(pull, nk, &lh))) {
lh 925 source4/lib/registry/regf.c SMB_ASSERT(!strncmp(lh.header, "lh", 2));
lh 927 source4/lib/registry/regf.c if (lh.key_count != nk->num_subkeys) {
lh 933 source4/lib/registry/regf.c for (i = 0; i < lh.key_count; i++) {
lh 934 source4/lib/registry/regf.c if (lh.hr[i].base37 != hash) {
lh 939 source4/lib/registry/regf.c lh.hr[i].nk_offset,
lh 996 source4/lib/registry/regf.c struct lh_block lh;
lh 1001 source4/lib/registry/regf.c &lh))) {
lh 1006 source4/lib/registry/regf.c SMB_ASSERT(!strncmp(lh.header, "lh", 2));
lh 1009 source4/lib/registry/regf.c for (j = 0; j < lh.key_count; j++) {
lh 1010 source4/lib/registry/regf.c if (lh.hr[j].base37 != hash) {
lh 1014 source4/lib/registry/regf.c lh.hr[j].nk_offset,
lh 1265 source4/lib/registry/regf.c struct lh_block lh;
lh 1266 source4/lib/registry/regf.c ZERO_STRUCT(lh);
lh 1267 source4/lib/registry/regf.c lh.header = "lh";
lh 1268 source4/lib/registry/regf.c lh.key_count = 1;
lh 1270 source4/lib/registry/regf.c lh.hr = talloc_array(regf, struct lh_hash, 1);
lh 1271 source4/lib/registry/regf.c W_ERROR_HAVE_NO_MEMORY(lh.hr);
lh 1272 source4/lib/registry/regf.c lh.hr[0].nk_offset = key_offset;
lh 1273 source4/lib/registry/regf.c lh.hr[0].base37 = regf_create_lh_hash(name);
lh 1277 source4/lib/registry/regf.c &lh);
lh 1279 source4/lib/registry/regf.c talloc_free(lh.hr);
lh 1347 source4/lib/registry/regf.c struct lh_block lh;
lh 1351 source4/lib/registry/regf.c if (NT_STATUS_IS_ERR(tdr_pull_lh_block(pull, regf, &lh))) {
lh 1357 source4/lib/registry/regf.c SMB_ASSERT(!strncmp(lh.header, "lh", 2));
lh 1359 source4/lib/registry/regf.c lh.hr = talloc_realloc(regf, lh.hr, struct lh_hash,
lh 1360 source4/lib/registry/regf.c lh.key_count+1);
lh 1361 source4/lib/registry/regf.c W_ERROR_HAVE_NO_MEMORY(lh.hr);
lh 1362 source4/lib/registry/regf.c lh.hr[lh.key_count].nk_offset = key_offset;
lh 1363 source4/lib/registry/regf.c lh.hr[lh.key_count].base37 = regf_create_lh_hash(name);
lh 1364 source4/lib/registry/regf.c lh.key_count++;
lh 1367 source4/lib/registry/regf.c list_offset, &lh);
lh 1369 source4/lib/registry/regf.c talloc_free(lh.hr);
lh 1484 source4/lib/registry/regf.c struct lh_block lh;
lh 1493 source4/lib/registry/regf.c if (NT_STATUS_IS_ERR(tdr_pull_lh_block(pull, regf, &lh))) {
lh 1500 source4/lib/registry/regf.c SMB_ASSERT(!strncmp(lh.header, "lh", 2));
lh 1502 source4/lib/registry/regf.c for (i = 0; i < lh.key_count; i++) {
lh 1504 source4/lib/registry/regf.c lh.hr[i-1] = lh.hr[i];
lh 1507 source4/lib/registry/regf.c if (lh.hr[i].nk_offset == key_offset) {
lh 1516 source4/lib/registry/regf.c lh.key_count--;
lh 1519 source4/lib/registry/regf.c if (lh.key_count == 0) {
lh 1528 source4/lib/registry/regf.c list_offset, &lh);
lh 1315 source4/wrepl_server/wrepl_apply_records.c time_t lh = 0;
lh 1327 source4/wrepl_server/wrepl_apply_records.c lh = MAX(lh, merge->addresses[i]->expire_time);
lh 1331 source4/wrepl_server/wrepl_apply_records.c if (lh != 0) {
lh 1332 source4/wrepl_server/wrepl_apply_records.c merge->expire_time = lh;