OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ipkl
(Results
1 - 10
of
10
) sorted by relevancy
/src/external/mpl/bind/dist/lib/dns/
ipkeylist.c
27
dns_ipkeylist_init(dns_ipkeylist_t *
ipkl
) {
28
ipkl
->count = 0;
29
ipkl
->allocated = 0;
30
ipkl
->addrs = NULL;
31
ipkl
->sources = NULL;
32
ipkl
->keys = NULL;
33
ipkl
->tlss = NULL;
34
ipkl
->labels = NULL;
38
dns_ipkeylist_clear(isc_mem_t *mctx, dns_ipkeylist_t *
ipkl
) {
39
REQUIRE(
ipkl
!= NULL)
[
all
...]
catz.c
1383
catz_process_primaries(dns_catz_zone_t *catz, dns_ipkeylist_t *
ipkl
,
1398
REQUIRE(
ipkl
!= NULL);
1485
for (i = 0; i <
ipkl
->count; i++) {
1486
if (
ipkl
->labels[i] != NULL &&
1487
!dns_name_compare(name,
ipkl
->labels[i]))
1493
if (i <
ipkl
->count) { /* we have this record already */
1495
if (
ipkl
->keys[i] != NULL) {
1496
if (dns_name_dynamic(
ipkl
->keys[i])) {
1497
dns_name_free(
ipkl
->keys[i],
1500
isc_mem_put(mctx,
ipkl
->keys[i]
[
all
...]
/src/external/mpl/dhcp/bind/dist/lib/dns/
ipkeylist.c
27
dns_ipkeylist_init(dns_ipkeylist_t *
ipkl
) {
28
ipkl
->count = 0;
29
ipkl
->allocated = 0;
30
ipkl
->addrs = NULL;
31
ipkl
->dscps = NULL;
32
ipkl
->keys = NULL;
33
ipkl
->labels = NULL;
37
dns_ipkeylist_clear(isc_mem_t *mctx, dns_ipkeylist_t *
ipkl
) {
40
REQUIRE(
ipkl
!= NULL);
42
if (
ipkl
->allocated == 0)
[
all
...]
catz.c
1062
catz_process_masters(dns_catz_zone_t *zone, dns_ipkeylist_t *
ipkl
,
1078
REQUIRE(
ipkl
!= NULL);
1163
for (i = 0; i <
ipkl
->count; i++) {
1164
if (
ipkl
->labels[i] != NULL &&
1165
!dns_name_compare(name,
ipkl
->labels[i]))
1171
if (i <
ipkl
->count) { /* we have this record already */
1173
ipkl
->keys[i] = keyname;
1175
memmove(&
ipkl
->addrs[i], &sockaddr,
1179
result = dns_ipkeylist_resize(mctx,
ipkl
, i + 1);
1184
ipkl
->labels[i] = isc_mem_get(mctx, sizeof(dns_name_t))
[
all
...]
/src/external/mpl/bind/dist/lib/dns/include/dns/
ipkeylist.h
39
dns_ipkeylist_init(dns_ipkeylist_t *
ipkl
);
41
* Reset
ipkl
to empty state
44
*\li '
ipkl
' to be non NULL.
48
dns_ipkeylist_clear(isc_mem_t *mctx, dns_ipkeylist_t *
ipkl
);
50
* Free `
ipkl
` contents using `mctx`.
52
* After this call, `
ipkl
` is a freshly cleared structure with all
57
*\li '
ipkl
' to be non NULL.
77
dns_ipkeylist_resize(isc_mem_t *mctx, dns_ipkeylist_t *
ipkl
, unsigned int n);
79
* Resize
ipkl
to contain n elements. Size (count) is not changed, and the
85
* \li 'n' >=
ipkl
->coun
[
all
...]
/src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
ipkeylist.h
39
dns_ipkeylist_init(dns_ipkeylist_t *
ipkl
);
41
* Reset
ipkl
to empty state
44
*\li '
ipkl
' to be non NULL.
48
dns_ipkeylist_clear(isc_mem_t *mctx, dns_ipkeylist_t *
ipkl
);
50
* Free `
ipkl
` contents using `mctx`.
52
* After this call, `
ipkl
` is a freshly cleared structure with all
57
*\li '
ipkl
' to be non NULL.
77
dns_ipkeylist_resize(isc_mem_t *mctx, dns_ipkeylist_t *
ipkl
, unsigned int n);
79
* Resize
ipkl
to contain n elements. Size (count) is not changed, and the
85
* \li 'n' >=
ipkl
->coun
[
all
...]
/src/external/mpl/bind/dist/bin/named/
config.c
820
isc_mem_t *mctx, dns_ipkeylist_t *
ipkl
) {
826
REQUIRE(
ipkl
!= NULL);
827
REQUIRE(
ipkl
->count == 0);
828
REQUIRE(
ipkl
->addrs == NULL);
829
REQUIRE(
ipkl
->keys == NULL);
830
REQUIRE(
ipkl
->tlss == NULL);
831
REQUIRE(
ipkl
->labels == NULL);
832
REQUIRE(
ipkl
->allocated == 0);
861
ipkl
->addrs = s.addrs;
862
ipkl
->keys = s.keys
[
all
...]
zoneconf.c
1277
dns_ipkeylist_t
ipkl
;
local
1278
dns_ipkeylist_init(&
ipkl
);
1281
&
ipkl
));
1282
dns_zone_setalsonotify(zone,
ipkl
.addrs,
ipkl
.sources,
1283
ipkl
.keys,
ipkl
.tlss,
1284
ipkl
.count);
1285
dns_ipkeylist_clear(mctx, &
ipkl
);
1639
dns_ipkeylist_t
ipkl
;
local
1819
dns_ipkeylist_t
ipkl
;
local
[
all
...]
server.c
3202
dns_ipkeylist_t
ipkl
;
local
3206
dns_ipkeylist_init(&
ipkl
);
3229
&
ipkl
);
3271
if (
ipkl
.count != 0) {
3273
* Transfer the ownership of the pointers inside '
ipkl
' and
3276
opts->masters =
ipkl
;
3277
ipkl
.count = 0;
3308
if (
ipkl
.count != 0) {
3309
dns_ipkeylist_clear(view->mctx, &
ipkl
);
/src/external/mpl/bind/dist/bin/named/include/named/
config.h
63
isc_mem_t *mctx, dns_ipkeylist_t *
ipkl
);
Completed in 54 milliseconds
Indexes created Sun Jun 14 00:25:39 UTC 2026