nesting 117 lib/tdb/common/transaction.c int nesting;
nesting 412 lib/tdb/common/transaction.c tdb->transaction->nesting++;
nesting 414 lib/tdb/common/transaction.c tdb->transaction->nesting));
nesting 512 lib/tdb/common/transaction.c if (tdb->transaction->nesting != 0) {
nesting 514 lib/tdb/common/transaction.c tdb->transaction->nesting--;
nesting 851 lib/tdb/common/transaction.c if (tdb->transaction->nesting != 0) {
nesting 852 lib/tdb/common/transaction.c tdb->transaction->nesting--;
nesting 432 lib/tevent/tevent.c ev->nesting.allowed = true;
nesting 439 lib/tevent/tevent.c if (ev->nesting.hook_fn &&
nesting 440 lib/tevent/tevent.c (ev->nesting.hook_fn != hook ||
nesting 441 lib/tevent/tevent.c ev->nesting.hook_private != private_data)) {
nesting 447 lib/tevent/tevent.c ev->nesting.hook_fn = hook;
nesting 448 lib/tevent/tevent.c ev->nesting.hook_private = private_data;
nesting 472 lib/tevent/tevent.c ev->nesting.level++;
nesting 474 lib/tevent/tevent.c if (ev->nesting.level > 1) {
nesting 475 lib/tevent/tevent.c if (!ev->nesting.allowed) {
nesting 481 lib/tevent/tevent.c if (ev->nesting.level > 0) {
nesting 482 lib/tevent/tevent.c if (ev->nesting.hook_fn) {
nesting 484 lib/tevent/tevent.c ret2 = ev->nesting.hook_fn(ev,
nesting 485 lib/tevent/tevent.c ev->nesting.hook_private,
nesting 486 lib/tevent/tevent.c ev->nesting.level,
nesting 499 lib/tevent/tevent.c if (ev->nesting.level > 0) {
nesting 500 lib/tevent/tevent.c if (ev->nesting.hook_fn) {
nesting 502 lib/tevent/tevent.c ret2 = ev->nesting.hook_fn(ev,
nesting 503 lib/tevent/tevent.c ev->nesting.hook_private,
nesting 504 lib/tevent/tevent.c ev->nesting.level,
nesting 516 lib/tevent/tevent.c ev->nesting.level--;
nesting 531 lib/tevent/tevent.c ev->nesting.level++;
nesting 533 lib/tevent/tevent.c if (ev->nesting.level > 1) {
nesting 534 lib/tevent/tevent.c if (!ev->nesting.allowed) {
nesting 540 lib/tevent/tevent.c if (ev->nesting.level > 0) {
nesting 541 lib/tevent/tevent.c if (ev->nesting.hook_fn) {
nesting 543 lib/tevent/tevent.c ret2 = ev->nesting.hook_fn(ev,
nesting 544 lib/tevent/tevent.c ev->nesting.hook_private,
nesting 545 lib/tevent/tevent.c ev->nesting.level,
nesting 563 lib/tevent/tevent.c if (ev->nesting.level > 0) {
nesting 564 lib/tevent/tevent.c if (ev->nesting.hook_fn) {
nesting 566 lib/tevent/tevent.c ret2 = ev->nesting.hook_fn(ev,
nesting 567 lib/tevent/tevent.c ev->nesting.hook_private,
nesting 568 lib/tevent/tevent.c ev->nesting.level,
nesting 580 lib/tevent/tevent.c ev->nesting.level--;
nesting 254 lib/tevent/tevent_internal.h } nesting;
nesting 68 lib/util/asn1.c struct nesting *nesting;
nesting 71 lib/util/asn1.c nesting = talloc(data, struct nesting);
nesting 72 lib/util/asn1.c if (!nesting) {
nesting 77 lib/util/asn1.c nesting->start = data->ofs;
nesting 78 lib/util/asn1.c nesting->next = data->nesting;
nesting 79 lib/util/asn1.c data->nesting = nesting;
nesting 86 lib/util/asn1.c struct nesting *nesting;
nesting 89 lib/util/asn1.c nesting = data->nesting;
nesting 91 lib/util/asn1.c if (!nesting) {
nesting 95 lib/util/asn1.c len = data->ofs - (nesting->start+1);
nesting 100 lib/util/asn1.c data->data[nesting->start] = 0x84;
nesting 105 lib/util/asn1.c memmove(data->data+nesting->start+5, data->data+nesting->start+1, len);
nesting 106 lib/util/asn1.c data->data[nesting->start+1] = (len>>24) & 0xFF;
nesting 107 lib/util/asn1.c data->data[nesting->start+2] = (len>>16) & 0xFF;
nesting 108 lib/util/asn1.c data->data[nesting->start+3] = (len>>8) & 0xFF;
nesting 109 lib/util/asn1.c data->data[nesting->start+4] = len&0xff;
nesting 111 lib/util/asn1.c data->data[nesting->start] = 0x83;
nesting 115 lib/util/asn1.c memmove(data->data+nesting->start+4, data->data+nesting->start+1, len);
nesting 116 lib/util/asn1.c data->data[nesting->start+1] = (len>>16) & 0xFF;
nesting 117 lib/util/asn1.c data->data[nesting->start+2] = (len>>8) & 0xFF;
nesting 118 lib/util/asn1.c data->data[nesting->start+3] = len&0xff;
nesting 120 lib/util/asn1.c data->data[nesting->start] = 0x82;
nesting 123 lib/util/asn1.c memmove(data->data+nesting->start+3, data->data+nesting->start+1, len);
nesting 124 lib/util/asn1.c data->data[nesting->start+1] = len>>8;
nesting 125 lib/util/asn1.c data->data[nesting->start+2] = len&0xff;
nesting 127 lib/util/asn1.c data->data[nesting->start] = 0x81;
nesting 129 lib/util/asn1.c memmove(data->data+nesting->start+2, data->data+nesting->start+1, len);
nesting 130 lib/util/asn1.c data->data[nesting->start+1] = len;
nesting 132 lib/util/asn1.c data->data[nesting->start] = len;
nesting 135 lib/util/asn1.c data->nesting = nesting->next;
nesting 136 lib/util/asn1.c talloc_free(nesting);
nesting 152 lib/util/asn1.c if (data->nesting->start+1 == data->ofs) {
nesting 428 lib/util/asn1.c struct nesting *nesting;
nesting 437 lib/util/asn1.c nesting = talloc(data, struct nesting);
nesting 438 lib/util/asn1.c if (!nesting) {
nesting 451 lib/util/asn1.c nesting->taglen = b;
nesting 455 lib/util/asn1.c nesting->taglen = (nesting->taglen << 8) | b;
nesting 459 lib/util/asn1.c nesting->taglen = b;
nesting 461 lib/util/asn1.c nesting->start = data->ofs;
nesting 462 lib/util/asn1.c nesting->next = data->nesting;
nesting 463 lib/util/asn1.c data->nesting = nesting;
nesting 473 lib/util/asn1.c struct nesting *nesting;
nesting 481 lib/util/asn1.c nesting = data->nesting;
nesting 483 lib/util/asn1.c if (!nesting) {
nesting 488 lib/util/asn1.c data->nesting = nesting->next;
nesting 489 lib/util/asn1.c talloc_free(nesting);
nesting 501 lib/util/asn1.c if (!data->nesting) {
nesting 505 lib/util/asn1.c remaining = data->nesting->taglen - (data->ofs - data->nesting->start);
nesting 26 lib/util/asn1.h struct nesting *next;
nesting 33 lib/util/asn1.h struct nesting *nesting;
nesting 1597 libcli/ldap/ldap_message.c if ((data->has_error) || (data->nesting != NULL)) {
nesting 34 source3/lib/dbwrap_ctdb.c uint32_t nesting;
nesting 286 source3/lib/dbwrap_ctdb.c ctx->transaction->nesting++;
nesting 637 source3/lib/dbwrap_ctdb.c if (h->nesting != 0) {
nesting 638 source3/lib/dbwrap_ctdb.c h->nesting--;
nesting 760 source3/lib/dbwrap_ctdb.c if (h->nesting != 0) {
nesting 761 source3/lib/dbwrap_ctdb.c h->nesting--;
nesting 1076 source3/smbd/sesssetup.c if (data->has_error || data->nesting == NULL) {
nesting 1084 source3/smbd/sesssetup.c if (data->nesting->taglen + data->nesting->start < data->nesting->taglen ||
nesting 1085 source3/smbd/sesssetup.c data->nesting->taglen + data->nesting->start < data->nesting->start) {
nesting 1090 source3/smbd/sesssetup.c (unsigned int)data->nesting->taglen,
nesting 1091 source3/smbd/sesssetup.c (unsigned int)data->nesting->start ));
nesting 1100 source3/smbd/sesssetup.c needed_len = data->nesting->taglen + data->nesting->start;