nt 106 lib/util/time.c time_t nt_time_to_unix(NTTIME nt) nt 108 lib/util/time.c return convert_timespec_to_time_t(nt_time_to_unix_timespec(&nt)); nt 116 lib/util/time.c _PUBLIC_ void unix_to_nt_time(NTTIME *nt, time_t t) nt 121 lib/util/time.c *nt = (NTTIME)-1LL; nt 126 lib/util/time.c *nt = 0x7fffffffffffffffLL; nt 131 lib/util/time.c *nt = 0; nt 139 lib/util/time.c *nt = t2; nt 379 lib/util/time.c _PUBLIC_ const char *nt_time_string(TALLOC_CTX *mem_ctx, NTTIME nt) nt 382 lib/util/time.c if (nt == 0) { nt 385 lib/util/time.c t = nt_time_to_unix(nt); nt 650 lib/util/time.c struct timespec nt_time_to_unix_timespec(NTTIME *nt) nt 655 lib/util/time.c if (*nt == 0 || *nt == (int64_t)-1) { nt 661 lib/util/time.c d = (int64_t)*nt; nt 43 lib/util/time.h _PUBLIC_ time_t nt_time_to_unix(NTTIME nt); nt 49 lib/util/time.h _PUBLIC_ void unix_to_nt_time(NTTIME *nt, time_t t); nt 110 lib/util/time.h _PUBLIC_ const char *nt_time_string(TALLOC_CTX *mem_ctx, NTTIME nt); nt 234 lib/util/time.h struct timespec nt_time_to_unix_timespec(NTTIME *nt); nt 490 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_ChallengeResponse(ndr, NDR_SCALARS, &r->nt)); nt 495 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_push_netr_ChallengeResponse(ndr, NDR_BUFFERS, &r->nt)); nt 512 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_ChallengeResponse(ndr, NDR_SCALARS, &r->nt)); nt 517 librpc/gen_ndr/ndr_netlogon.c NDR_CHECK(ndr_pull_netr_ChallengeResponse(ndr, NDR_BUFFERS, &r->nt)); nt 534 librpc/gen_ndr/ndr_netlogon.c ndr_print_netr_ChallengeResponse(ndr, "nt", &r->nt); nt 84 librpc/gen_ndr/netlogon.h struct netr_ChallengeResponse nt; nt 1294 nsswitch/wbinfo.c DATA_BLOB nt = data_blob_null; nt 1334 nsswitch/wbinfo.c &lm, &nt, NULL)) { nt 1353 nsswitch/wbinfo.c nt = data_blob(NULL, 24); nt 1355 nsswitch/wbinfo.c nt.data); nt 1358 nsswitch/wbinfo.c params.password.response.nt_length = nt.length; nt 1359 nsswitch/wbinfo.c params.password.response.nt_data = nt.data; nt 1380 nsswitch/wbinfo.c data_blob_free(&nt); nt 1012 source3/include/proto.h bool nt_time_is_zero(const NTTIME *nt); nt 1054 source3/include/proto.h time_t nt_time_to_unix_abs(const NTTIME *nt); nt 1056 source3/include/proto.h void unix_timespec_to_nt_time(NTTIME *nt, struct timespec ts); nt 1057 source3/include/proto.h void unix_to_nt_time_abs(NTTIME *nt, time_t t); nt 1061 source3/include/proto.h bool nt_time_is_set(const NTTIME *nt); nt 5671 source3/include/proto.h struct netr_ChallengeResponse nt, nt 138 source3/lib/time.c bool nt_time_is_zero(const NTTIME *nt) nt 140 source3/lib/time.c return (*nt == 0); nt 326 source3/lib/time.c NTTIME nt; nt 328 source3/lib/time.c unix_timespec_to_nt_time(&nt, ts); nt 329 source3/lib/time.c SIVAL(p, 0, nt & 0xFFFFFFFF); nt 330 source3/lib/time.c SIVAL(p, 4, nt >> 32); nt 760 source3/lib/time.c NTTIME nt; nt 761 source3/lib/time.c nt = IVAL(p,0) + ((uint64_t)IVAL(p,4) << 32); nt 762 source3/lib/time.c if (nt == (uint64_t)-1) { nt 768 source3/lib/time.c return nt_time_to_unix_timespec(&nt); nt 861 source3/lib/time.c time_t nt_time_to_unix_abs(const NTTIME *nt) nt 865 source3/lib/time.c if (*nt == 0) { nt 869 source3/lib/time.c if (*nt == (uint64_t)-1) { nt 873 source3/lib/time.c if (*nt == NTTIME_INFINITY) { nt 879 source3/lib/time.c d=~*nt; nt 902 source3/lib/time.c void unix_timespec_to_nt_time(NTTIME *nt, struct timespec ts) nt 907 source3/lib/time.c *nt = 0; nt 911 source3/lib/time.c *nt = 0x7fffffffffffffffLL; nt 915 source3/lib/time.c *nt = (uint64_t)-1; nt 925 source3/lib/time.c *nt = d; nt 936 source3/lib/time.c void unix_to_nt_time_abs(NTTIME *nt, time_t t) nt 941 source3/lib/time.c *nt = 0; nt 946 source3/lib/time.c *nt = 0x7fffffffffffffffLL; nt 952 source3/lib/time.c *nt = NTTIME_INFINITY; nt 959 source3/lib/time.c *nt = (NTTIME)d; nt 962 source3/lib/time.c *nt=~*nt; nt 1031 source3/lib/time.c bool nt_time_is_set(const NTTIME *nt) nt 1033 source3/lib/time.c if (*nt == 0x7FFFFFFFFFFFFFFFLL) { nt 1037 source3/lib/time.c if (*nt == NTTIME_INFINITY) { nt 240 source3/rpc_client/cli_netlogon.c struct netr_ChallengeResponse nt; nt 243 source3/rpc_client/cli_netlogon.c ZERO_STRUCT(nt); nt 258 source3/rpc_client/cli_netlogon.c nt.length = 24; nt 259 source3/rpc_client/cli_netlogon.c nt.data = local_nt_response; nt 269 source3/rpc_client/cli_netlogon.c nt, nt 335 source3/rpc_client/cli_netlogon.c struct netr_ChallengeResponse nt; nt 343 source3/rpc_client/cli_netlogon.c ZERO_STRUCT(nt); nt 378 source3/rpc_client/cli_netlogon.c nt.data = nt_response.data; nt 379 source3/rpc_client/cli_netlogon.c nt.length = nt_response.length; nt 389 source3/rpc_client/cli_netlogon.c nt, nt 455 source3/rpc_client/cli_netlogon.c struct netr_ChallengeResponse nt; nt 463 source3/rpc_client/cli_netlogon.c ZERO_STRUCT(nt); nt 496 source3/rpc_client/cli_netlogon.c nt.data = nt_response.data; nt 497 source3/rpc_client/cli_netlogon.c nt.length = nt_response.length; nt 507 source3/rpc_client/cli_netlogon.c nt, nt 369 source3/rpc_client/init_netlogon.c struct netr_ChallengeResponse nt, nt 380 source3/rpc_client/init_netlogon.c r->nt = nt; nt 995 source3/rpc_server/srv_netlog_nt.c logon->network->nt.data, nt 996 source3/rpc_server/srv_netlog_nt.c logon->network->nt.length)) { nt 786 source3/winbindd/winbindd_cache.c static void centry_put_nttime(struct cache_entry *centry, NTTIME nt) nt 789 source3/winbindd/winbindd_cache.c SIVAL(centry->data, centry->ofs, nt & 0xFFFFFFFF); nt 791 source3/winbindd/winbindd_cache.c SIVAL(centry->data, centry->ofs, nt >> 32); nt 801 source3/winbindd/winbindd_cache.c NTTIME nt = (NTTIME)t; nt 802 source3/winbindd/winbindd_cache.c centry_put_nttime(centry, nt); nt 74 source4/auth/auth.h DATA_BLOB nt; nt 78 source4/auth/auth.h struct samr_Password *nt; nt 190 source4/auth/ntlm/auth_sam.c user_info->password.hash.nt, nt 203 source4/auth/ntlm/auth_sam.c &user_info->password.response.nt, nt 136 source4/auth/ntlm/auth_server.c cli_credentials_set_nt_hash(creds, user_info->password.hash.nt, nt 141 source4/auth/ntlm/auth_server.c cli_credentials_set_ntlm_response(creds, &user_info->password.response.lanman, &user_info->password.response.nt, CRED_SPECIFIED); nt 154 source4/auth/ntlm/auth_util.c user_info_in->password.hash.nt->hash, &chall_blob, nt 163 source4/auth/ntlm/auth_util.c user_info_temp->password.response.nt = ntlmv2_response; nt 169 source4/auth/ntlm/auth_util.c SMBOWFencrypt(user_info_in->password.hash.nt->hash, challenge, blob.data); nt 171 source4/auth/ntlm/auth_util.c user_info_temp->password.response.nt = blob; nt 178 source4/auth/ntlm/auth_util.c user_info_temp->password.response.lanman = user_info_temp->password.response.nt; nt 195 source4/auth/ntlm/auth_util.c struct samr_Password nt; nt 215 source4/auth/ntlm/auth_util.c E_md4hash(user_info_in->password.plaintext, nt.hash); nt 216 source4/auth/ntlm/auth_util.c user_info_temp->password.hash.nt = talloc(user_info_temp, nt 218 source4/auth/ntlm/auth_util.c *user_info_temp->password.hash.nt = nt; nt 111 source4/auth/ntlm/auth_winbind.c request.data.auth_crap.nt_resp_len = MIN(user_info->password.response.nt.length, nt 116 source4/auth/ntlm/auth_winbind.c memcpy(request.data.auth_crap.nt_resp, user_info->password.response.nt.data, nt 194 source4/auth/ntlm/auth_winbind.c password_info->ntpassword = *user_info->password.hash.nt; nt 216 source4/auth/ntlm/auth_winbind.c network_info->nt.length = user_info->password.response.nt.length; nt 217 source4/auth/ntlm/auth_winbind.c network_info->nt.data = user_info->password.response.nt.data; nt 681 source4/auth/ntlmssp/ntlmssp_server.c user_info->password.response.nt = gensec_ntlmssp_state->nt_resp; nt 682 source4/auth/ntlmssp/ntlmssp_server.c user_info->password.response.nt.data = talloc_steal(user_info, gensec_ntlmssp_state->nt_resp.data); nt 42 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c NegotiationToken nt; nt 45 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.element = choice_NegotiationToken_negTokenResp; nt 47 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c ALLOC(nt.u.negTokenResp.negResult, 1); nt 48 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c if (nt.u.negTokenResp.negResult == NULL) { nt 52 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c *(nt.u.negTokenResp.negResult) = reject; nt 53 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.u.negTokenResp.supportedMech = NULL; nt 54 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.u.negTokenResp.responseToken = NULL; nt 55 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.u.negTokenResp.mechListMIC = NULL; nt 58 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c output_token->value, output_token->length, &nt, nt 60 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationToken(&nt); nt 94 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c NegotiationTokenWin nt; nt 105 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c memset(&nt, 0, sizeof(nt)); nt 107 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.element = choice_NegotiationTokenWin_negTokenInit; nt 108 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.u.negTokenInit.reqFlags = NULL; nt 109 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.u.negTokenInit.mechToken = NULL; nt 110 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.u.negTokenInit.negHints = NULL; nt 114 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c &nt.u.negTokenInit.mechTypes, NULL); nt 122 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationTokenWin(&nt); nt 141 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationTokenWin(&nt); nt 154 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationTokenWin(&nt); nt 162 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationTokenWin(&nt); nt 171 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c ALLOC(nt.u.negTokenInit.negHints, 1); nt 172 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c if (nt.u.negTokenInit.negHints == NULL) { nt 175 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationTokenWin(&nt); nt 179 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c ALLOC(nt.u.negTokenInit.negHints->hintName, 1); nt 180 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c if (nt.u.negTokenInit.negHints->hintName == NULL) { nt 183 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationTokenWin(&nt); nt 187 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c *(nt.u.negTokenInit.negHints->hintName) = name_buf.value; nt 189 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.u.negTokenInit.negHints->hintAddress = NULL; nt 192 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c data.value, data.length, &nt, &buf_len, ret); nt 193 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationTokenWin(&nt); nt 220 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c NegotiationToken nt; nt 225 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c memset(&nt, 0, sizeof(nt)); nt 227 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.element = choice_NegotiationToken_negTokenResp; nt 229 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c ALLOC(nt.u.negTokenResp.negResult, 1); nt 230 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c if (nt.u.negTokenResp.negResult == NULL) { nt 239 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c *(nt.u.negTokenResp.negResult) = accept_incomplete; nt 241 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c *(nt.u.negTokenResp.negResult) = accept_completed; nt 244 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c *(nt.u.negTokenResp.negResult) = request_mic; nt 246 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c *(nt.u.negTokenResp.negResult) = accept_incomplete; nt 250 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c ALLOC(nt.u.negTokenResp.supportedMech, 1); nt 251 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c if (nt.u.negTokenResp.supportedMech == NULL) { nt 252 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationToken(&nt); nt 259 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.u.negTokenResp.supportedMech, nt 262 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationToken(&nt); nt 267 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.u.negTokenResp.supportedMech = NULL; nt 271 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c ALLOC(nt.u.negTokenResp.responseToken, 1); nt 272 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c if (nt.u.negTokenResp.responseToken == NULL) { nt 273 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationToken(&nt); nt 277 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.u.negTokenResp.responseToken->length = mech_token->length; nt 278 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.u.negTokenResp.responseToken->data = mech_token->value; nt 282 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.u.negTokenResp.responseToken = NULL; nt 292 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c ALLOC(nt.u.negTokenResp.mechListMIC, 1); nt 293 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c if (nt.u.negTokenResp.mechListMIC == NULL) { nt 295 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationToken(&nt); nt 299 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.u.negTokenResp.mechListMIC->length = mech_mic_buf.length; nt 300 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.u.negTokenResp.mechListMIC->data = mech_mic_buf.value; nt 302 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.u.negTokenResp.mechListMIC = NULL; nt 304 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationToken(&nt); nt 309 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c nt.u.negTokenResp.mechListMIC = NULL; nt 313 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c &nt, &size, ret); nt 315 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationToken(&nt); nt 326 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c if (*(nt.u.negTokenResp.negResult) == accept_completed) nt 330 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationToken(&nt); nt 549 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c NegotiationToken nt; nt 586 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c ret = decode_NegotiationToken(data.value, data.length, &nt, &nt_len); nt 592 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c if (nt.element != choice_NegotiationToken_negTokenInit) { nt 596 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c ni = &nt.u.negTokenInit; nt 599 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationToken(&nt); nt 609 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationToken(&nt); nt 704 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationToken(&nt); nt 732 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationToken(&nt); nt 783 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c NegotiationToken nt; nt 804 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c &nt, &nt_len); nt 809 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c if (nt.element != choice_NegotiationToken_negTokenResp) { nt 813 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c na = &nt.u.negTokenResp; nt 871 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationToken(&nt); nt 935 source4/heimdal/lib/gssapi/spnego/accept_sec_context.c free_NegotiationToken(&nt); nt 87 source4/heimdal/lib/gssapi/spnego/init_sec_context.c NegotiationToken nt; nt 99 source4/heimdal/lib/gssapi/spnego/init_sec_context.c memset(&nt, 0, sizeof(nt)); nt 101 source4/heimdal/lib/gssapi/spnego/init_sec_context.c nt.element = choice_NegotiationToken_negTokenResp; nt 103 source4/heimdal/lib/gssapi/spnego/init_sec_context.c ALLOC(nt.u.negTokenResp.negResult, 1); nt 104 source4/heimdal/lib/gssapi/spnego/init_sec_context.c if (nt.u.negTokenResp.negResult == NULL) { nt 109 source4/heimdal/lib/gssapi/spnego/init_sec_context.c nt.u.negTokenResp.supportedMech = NULL; nt 115 source4/heimdal/lib/gssapi/spnego/init_sec_context.c nt.u.negTokenResp.responseToken = NULL; nt 116 source4/heimdal/lib/gssapi/spnego/init_sec_context.c *(nt.u.negTokenResp.negResult) = accept_completed; nt 118 source4/heimdal/lib/gssapi/spnego/init_sec_context.c ALLOC(nt.u.negTokenResp.responseToken, 1); nt 119 source4/heimdal/lib/gssapi/spnego/init_sec_context.c if (nt.u.negTokenResp.responseToken == NULL) { nt 120 source4/heimdal/lib/gssapi/spnego/init_sec_context.c free_NegotiationToken(&nt); nt 124 source4/heimdal/lib/gssapi/spnego/init_sec_context.c nt.u.negTokenResp.responseToken->length = mech_token->length; nt 125 source4/heimdal/lib/gssapi/spnego/init_sec_context.c nt.u.negTokenResp.responseToken->data = mech_token->value; nt 129 source4/heimdal/lib/gssapi/spnego/init_sec_context.c *(nt.u.negTokenResp.negResult) = accept_incomplete; nt 140 source4/heimdal/lib/gssapi/spnego/init_sec_context.c ALLOC(nt.u.negTokenResp.mechListMIC, 1); nt 141 source4/heimdal/lib/gssapi/spnego/init_sec_context.c if (nt.u.negTokenResp.mechListMIC == NULL) { nt 143 source4/heimdal/lib/gssapi/spnego/init_sec_context.c free_NegotiationToken(&nt); nt 148 source4/heimdal/lib/gssapi/spnego/init_sec_context.c nt.u.negTokenResp.mechListMIC->length = mic_buf.length; nt 149 source4/heimdal/lib/gssapi/spnego/init_sec_context.c nt.u.negTokenResp.mechListMIC->data = mic_buf.value; nt 151 source4/heimdal/lib/gssapi/spnego/init_sec_context.c nt.u.negTokenResp.mechListMIC = NULL; nt 153 source4/heimdal/lib/gssapi/spnego/init_sec_context.c free_NegotiationToken(&nt); nt 158 source4/heimdal/lib/gssapi/spnego/init_sec_context.c nt.u.negTokenResp.mechListMIC = NULL; nt 163 source4/heimdal/lib/gssapi/spnego/init_sec_context.c &nt, &size, ret); nt 165 source4/heimdal/lib/gssapi/spnego/init_sec_context.c free_NegotiationToken(&nt); nt 170 source4/heimdal/lib/gssapi/spnego/init_sec_context.c if (*(nt.u.negTokenResp.negResult) == accept_completed) nt 175 source4/heimdal/lib/gssapi/spnego/init_sec_context.c free_NegotiationToken(&nt); nt 32 source4/libcli/raw/rawacl.c struct smb_nttrans nt; nt 35 source4/libcli/raw/rawacl.c nt.in.max_setup = 0; nt 36 source4/libcli/raw/rawacl.c nt.in.max_param = 4; nt 37 source4/libcli/raw/rawacl.c nt.in.max_data = 0xFFFF; nt 38 source4/libcli/raw/rawacl.c nt.in.setup_count = 0; nt 39 source4/libcli/raw/rawacl.c nt.in.function = NT_TRANSACT_QUERY_SECURITY_DESC; nt 40 source4/libcli/raw/rawacl.c nt.in.setup = NULL; nt 46 source4/libcli/raw/rawacl.c nt.in.params.data = params; nt 47 source4/libcli/raw/rawacl.c nt.in.params.length = 8; nt 49 source4/libcli/raw/rawacl.c nt.in.data = data_blob(NULL, 0); nt 51 source4/libcli/raw/rawacl.c return smb_raw_nttrans_send(tree, &nt); nt 63 source4/libcli/raw/rawacl.c struct smb_nttrans nt; nt 67 source4/libcli/raw/rawacl.c status = smb_raw_nttrans_recv(req, mem_ctx, &nt); nt 73 source4/libcli/raw/rawacl.c if (nt.out.params.length != 4 || nt 74 source4/libcli/raw/rawacl.c IVAL(nt.out.params.data, 0) > nt.out.data.length) { nt 78 source4/libcli/raw/rawacl.c nt.out.data.length = IVAL(nt.out.params.data, 0); nt 80 source4/libcli/raw/rawacl.c ndr = ndr_pull_init_blob(&nt.out.data, mem_ctx, NULL); nt 118 source4/libcli/raw/rawacl.c struct smb_nttrans nt; nt 124 source4/libcli/raw/rawacl.c nt.in.max_setup = 0; nt 125 source4/libcli/raw/rawacl.c nt.in.max_param = 0; nt 126 source4/libcli/raw/rawacl.c nt.in.max_data = 0; nt 127 source4/libcli/raw/rawacl.c nt.in.setup_count = 0; nt 128 source4/libcli/raw/rawacl.c nt.in.function = NT_TRANSACT_SET_SECURITY_DESC; nt 129 source4/libcli/raw/rawacl.c nt.in.setup = NULL; nt 135 source4/libcli/raw/rawacl.c nt.in.params.data = params; nt 136 source4/libcli/raw/rawacl.c nt.in.params.length = 8; nt 147 source4/libcli/raw/rawacl.c nt.in.data = ndr_push_blob(ndr); nt 149 source4/libcli/raw/rawacl.c req = smb_raw_nttrans_send(tree, &nt); nt 86 source4/libcli/raw/rawfile.c struct smb_nttrans nt; nt 110 source4/libcli/raw/rawfile.c nt.in.max_setup = 0; nt 111 source4/libcli/raw/rawfile.c nt.in.max_param = 0; nt 112 source4/libcli/raw/rawfile.c nt.in.max_data = 0; nt 113 source4/libcli/raw/rawfile.c nt.in.setup_count = 0; nt 114 source4/libcli/raw/rawfile.c nt.in.setup = NULL; nt 115 source4/libcli/raw/rawfile.c nt.in.function = NT_TRANSACT_RENAME; nt 116 source4/libcli/raw/rawfile.c nt.in.params = data_blob_talloc(mem_ctx, NULL, 4); nt 117 source4/libcli/raw/rawfile.c nt.in.data = data_blob(NULL, 0); nt 119 source4/libcli/raw/rawfile.c SSVAL(nt.in.params.data, VWV(0), parms->nttrans.in.file.fnum); nt 120 source4/libcli/raw/rawfile.c SSVAL(nt.in.params.data, VWV(1), parms->nttrans.in.flags); nt 123 source4/libcli/raw/rawfile.c &nt.in.params, parms->nttrans.in.new_name, nt 126 source4/libcli/raw/rawfile.c req = smb_raw_nttrans_send(tree, &nt); nt 297 source4/libcli/raw/rawfile.c struct smb_nttrans nt; nt 300 source4/libcli/raw/rawfile.c status = smb_raw_nttrans_recv(req, mem_ctx, &nt); nt 303 source4/libcli/raw/rawfile.c if (nt.out.params.length < 69) { nt 307 source4/libcli/raw/rawfile.c params = nt.out.params.data; nt 333 source4/libcli/raw/rawfile.c struct smb_nttrans nt; nt 340 source4/libcli/raw/rawfile.c nt.in.max_setup = 0; nt 341 source4/libcli/raw/rawfile.c nt.in.max_param = 101; nt 342 source4/libcli/raw/rawfile.c nt.in.max_data = 0; nt 343 source4/libcli/raw/rawfile.c nt.in.setup_count = 0; nt 344 source4/libcli/raw/rawfile.c nt.in.function = NT_TRANSACT_CREATE; nt 345 source4/libcli/raw/rawfile.c nt.in.setup = NULL; nt 373 source4/libcli/raw/rawfile.c nt.in.params = data_blob_talloc(mem_ctx, NULL, 53); nt 374 source4/libcli/raw/rawfile.c if (nt.in.params.data == NULL) { nt 380 source4/libcli/raw/rawfile.c params = nt.in.params.data; nt 396 source4/libcli/raw/rawfile.c smbcli_blob_append_string(tree->session, mem_ctx, &nt.in.params,"", 0); nt 397 source4/libcli/raw/rawfile.c fname_len = smbcli_blob_append_string(tree->session, mem_ctx, &nt.in.params, nt 400 source4/libcli/raw/rawfile.c SIVAL(nt.in.params.data, 44, fname_len); nt 403 source4/libcli/raw/rawfile.c nt.in.data = data_blob_talloc(mem_ctx, NULL, sd_blob.length + ea_blob.length); nt 404 source4/libcli/raw/rawfile.c memcpy(nt.in.data.data, sd_blob.data, sd_blob.length); nt 405 source4/libcli/raw/rawfile.c memcpy(nt.in.data.data+sd_blob.length, ea_blob.data, ea_blob.length); nt 408 source4/libcli/raw/rawfile.c req = smb_raw_nttrans_send(tree, &nt); nt 75 source4/libcli/raw/rawioctl.c struct smb_nttrans nt; nt 78 source4/libcli/raw/rawioctl.c nt.in.max_setup = 4; nt 79 source4/libcli/raw/rawioctl.c nt.in.max_param = 0; nt 80 source4/libcli/raw/rawioctl.c nt.in.max_data = parms->ntioctl.in.max_data; nt 81 source4/libcli/raw/rawioctl.c nt.in.setup_count = 4; nt 82 source4/libcli/raw/rawioctl.c nt.in.setup = setup; nt 87 source4/libcli/raw/rawioctl.c nt.in.function = NT_TRANSACT_IOCTL; nt 88 source4/libcli/raw/rawioctl.c nt.in.params = data_blob(NULL, 0); nt 89 source4/libcli/raw/rawioctl.c nt.in.data = parms->ntioctl.in.blob; nt 91 source4/libcli/raw/rawioctl.c return smb_raw_nttrans_send(tree, &nt); nt 102 source4/libcli/raw/rawioctl.c struct smb_nttrans nt; nt 108 source4/libcli/raw/rawioctl.c status = smb_raw_nttrans_recv(req, tmp_mem, &nt); nt 111 source4/libcli/raw/rawioctl.c parms->ntioctl.out.blob = nt.out.data; nt 30 source4/libcli/raw/rawnotify.c struct smb_nttrans nt; nt 37 source4/libcli/raw/rawnotify.c nt.in.max_setup = 0; nt 38 source4/libcli/raw/rawnotify.c nt.in.max_param = parms->nttrans.in.buffer_size; nt 39 source4/libcli/raw/rawnotify.c nt.in.max_data = 0; nt 40 source4/libcli/raw/rawnotify.c nt.in.setup_count = 4; nt 41 source4/libcli/raw/rawnotify.c nt.in.setup = setup; nt 45 source4/libcli/raw/rawnotify.c nt.in.function = NT_TRANSACT_NOTIFY_CHANGE; nt 46 source4/libcli/raw/rawnotify.c nt.in.params = data_blob(NULL, 0); nt 47 source4/libcli/raw/rawnotify.c nt.in.data = data_blob(NULL, 0); nt 49 source4/libcli/raw/rawnotify.c return smb_raw_nttrans_send(tree, &nt); nt 58 source4/libcli/raw/rawnotify.c struct smb_nttrans nt; nt 67 source4/libcli/raw/rawnotify.c status = smb_raw_nttrans_recv(req, mem_ctx, &nt); nt 76 source4/libcli/raw/rawnotify.c for (ofs=0; nt.out.params.length - ofs > 12; ) { nt 77 source4/libcli/raw/rawnotify.c uint32_t next = IVAL(nt.out.params.data, ofs); nt 80 source4/libcli/raw/rawnotify.c ofs + next >= nt.out.params.length) break; nt 91 source4/libcli/raw/rawnotify.c parms->nttrans.out.changes[i].action = IVAL(nt.out.params.data, ofs+4); nt 92 source4/libcli/raw/rawnotify.c smbcli_blob_pull_string(session, mem_ctx, &nt.out.params, nt 95 source4/libcli/raw/rawnotify.c ofs += IVAL(nt.out.params.data, ofs); nt 33 source4/libcli/raw/rawshadow.c union smb_ioctl nt; nt 40 source4/libcli/raw/rawshadow.c nt.ntioctl.level = RAW_IOCTL_NTIOCTL; nt 41 source4/libcli/raw/rawshadow.c nt.ntioctl.in.function = FSCTL_GET_SHADOW_COPY_DATA; nt 42 source4/libcli/raw/rawshadow.c nt.ntioctl.in.file.fnum = info->in.file.fnum; nt 43 source4/libcli/raw/rawshadow.c nt.ntioctl.in.fsctl = true; nt 44 source4/libcli/raw/rawshadow.c nt.ntioctl.in.filter = 0; nt 45 source4/libcli/raw/rawshadow.c nt.ntioctl.in.max_data = info->in.max_data; nt 46 source4/libcli/raw/rawshadow.c nt.ntioctl.in.blob = data_blob(NULL, 0); nt 48 source4/libcli/raw/rawshadow.c status = smb_raw_ioctl(tree, mem_ctx, &nt); nt 53 source4/libcli/raw/rawshadow.c blob = nt.ntioctl.out.blob; nt 1496 source4/ntvfs/ntvfs_generic.c union smb_notify *nt, nt 1502 source4/ntvfs/ntvfs_generic.c switch (nt->nttrans.level) { nt 1507 source4/ntvfs/ntvfs_generic.c nt->smb2.out.num_changes = nt2->nttrans.out.num_changes; nt 1508 source4/ntvfs/ntvfs_generic.c nt->smb2.out.changes = talloc_steal(req, nt2->nttrans.out.changes); nt 1524 source4/ntvfs/ntvfs_generic.c union smb_notify *nt) nt 1532 source4/ntvfs/ntvfs_generic.c status = ntvfs_map_async_setup(ntvfs, req, nt, nt2, nt 1538 source4/ntvfs/ntvfs_generic.c switch (nt->nttrans.level) { nt 1544 source4/ntvfs/ntvfs_generic.c nt2->nttrans.in.file.ntvfs = nt->smb2.in.file.ntvfs; nt 1545 source4/ntvfs/ntvfs_generic.c nt2->nttrans.in.buffer_size = nt->smb2.in.buffer_size; nt 1546 source4/ntvfs/ntvfs_generic.c nt2->nttrans.in.completion_filter = nt->smb2.in.completion_filter; nt 1547 source4/ntvfs/ntvfs_generic.c nt2->nttrans.in.recursive = nt->smb2.in.recursive; nt 542 source4/rpc_server/netlogon/dcerpc_netlogon.c user_info->password.hash.nt = talloc(user_info, struct samr_Password); nt 543 source4/rpc_server/netlogon/dcerpc_netlogon.c NT_STATUS_HAVE_NO_MEMORY(user_info->password.hash.nt); nt 544 source4/rpc_server/netlogon/dcerpc_netlogon.c *user_info->password.hash.nt = r->in.logon->password->ntpassword; nt 567 source4/rpc_server/netlogon/dcerpc_netlogon.c user_info->password.response.nt = data_blob_talloc(mem_ctx, r->in.logon->network->nt.data, r->in.logon->network->nt.length); nt 68 source4/scripting/python/pyglue.c NTTIME nt; nt 72 source4/scripting/python/pyglue.c unix_to_nt_time(&nt, t); nt 74 source4/scripting/python/pyglue.c return PyInt_FromLong((uint64_t)nt); nt 347 source4/smb_server/smb/nttrans.c union smb_ioctl *nt; nt 354 source4/smb_server/smb/nttrans.c nt = talloc(op, union smb_ioctl); nt 355 source4/smb_server/smb/nttrans.c NT_STATUS_HAVE_NO_MEMORY(nt); nt 357 source4/smb_server/smb/nttrans.c nt->ntioctl.level = RAW_IOCTL_NTIOCTL; nt 358 source4/smb_server/smb/nttrans.c nt->ntioctl.in.function = IVAL(trans->in.setup, 0); nt 359 source4/smb_server/smb/nttrans.c nt->ntioctl.in.file.ntvfs = smbsrv_pull_fnum(req, (uint8_t *)trans->in.setup, 4); nt 360 source4/smb_server/smb/nttrans.c nt->ntioctl.in.fsctl = CVAL(trans->in.setup, 6); nt 361 source4/smb_server/smb/nttrans.c nt->ntioctl.in.filter = CVAL(trans->in.setup, 7); nt 362 source4/smb_server/smb/nttrans.c nt->ntioctl.in.max_data = trans->in.max_data; nt 363 source4/smb_server/smb/nttrans.c nt->ntioctl.in.blob = trans->in.data; nt 365 source4/smb_server/smb/nttrans.c op->op_info = nt; nt 368 source4/smb_server/smb/nttrans.c SMBSRV_CHECK_FILE_HANDLE_NTSTATUS(nt->ntioctl.in.file.ntvfs); nt 369 source4/smb_server/smb/nttrans.c return ntvfs_ioctl(req->ntvfs, nt); nt 145 source4/smb_server/smb/sesssetup.c user_info->password.response.nt = data_blob(NULL, 0); nt 271 source4/smb_server/smb/sesssetup.c user_info->password.response.nt = sess->nt1.in.password2; nt 272 source4/smb_server/smb/sesssetup.c user_info->password.response.nt.data = talloc_steal(user_info, sess->nt1.in.password2.data); nt 91 source4/torture/raw/ioctl.c union smb_ioctl nt; nt 103 source4/torture/raw/ioctl.c nt.ioctl.level = RAW_IOCTL_NTIOCTL; nt 104 source4/torture/raw/ioctl.c nt.ntioctl.in.function = FSCTL_SET_SPARSE; nt 105 source4/torture/raw/ioctl.c nt.ntioctl.in.file.fnum = fnum; nt 106 source4/torture/raw/ioctl.c nt.ntioctl.in.fsctl = true; nt 107 source4/torture/raw/ioctl.c nt.ntioctl.in.filter = 0; nt 108 source4/torture/raw/ioctl.c nt.ntioctl.in.max_data = 0; nt 109 source4/torture/raw/ioctl.c nt.ntioctl.in.blob = data_blob(NULL, 0); nt 111 source4/torture/raw/ioctl.c status = smb_raw_ioctl(cli->tree, mem_ctx, &nt); nt 115 source4/torture/raw/ioctl.c nt.ioctl.level = RAW_IOCTL_NTIOCTL; nt 116 source4/torture/raw/ioctl.c nt.ntioctl.in.function = FSCTL_REQUEST_BATCH_OPLOCK; nt 117 source4/torture/raw/ioctl.c nt.ntioctl.in.file.fnum = fnum; nt 118 source4/torture/raw/ioctl.c nt.ntioctl.in.fsctl = true; nt 119 source4/torture/raw/ioctl.c nt.ntioctl.in.filter = 0; nt 120 source4/torture/raw/ioctl.c nt.ntioctl.in.max_data = 0; nt 121 source4/torture/raw/ioctl.c nt.ntioctl.in.blob = data_blob(NULL, 0); nt 123 source4/torture/raw/ioctl.c status = smb_raw_ioctl(cli->tree, mem_ctx, &nt); nt 131 source4/torture/raw/ioctl.c nt.ntioctl.in.file.fnum = fnum+1; nt 132 source4/torture/raw/ioctl.c status = smb_raw_ioctl(cli->tree, mem_ctx, &nt); nt 136 source4/torture/raw/ioctl.c nt.ntioctl.in.file.fnum = fnum; nt 138 source4/torture/raw/ioctl.c nt.ntioctl.in.function = FSCTL_FILESYSTEM + (i<<2); nt 139 source4/torture/raw/ioctl.c status = smb_raw_ioctl(cli->tree, mem_ctx, &nt); nt 142 source4/torture/raw/qfileinfo.c static int dos_nt_time_cmp(time_t t, NTTIME nt) nt 144 source4/torture/raw/qfileinfo.c time_t t2 = nt_time_to_unix(nt); nt 627 source4/torture/rpc/netlogon.c ninfo.nt.data = nt_resp.data; nt 628 source4/torture/rpc/netlogon.c ninfo.nt.length = nt_resp.length; nt 1103 source4/torture/rpc/samba3rpc.c ninfo.nt.length = nt_resp.length; nt 1104 source4/torture/rpc/samba3rpc.c ninfo.nt.data = nt_resp.data; nt 138 source4/torture/rpc/samlogon.c ninfo.nt.data = nt_response->data; nt 139 source4/torture/rpc/samlogon.c ninfo.nt.length = nt_response->length; nt 141 source4/torture/rpc/samlogon.c ninfo.nt.data = NULL; nt 142 source4/torture/rpc/samlogon.c ninfo.nt.length = 0; nt 471 source4/torture/rpc/samr.c NTTIME nt; nt 472 source4/torture/rpc/samr.c unix_to_nt_time(&nt, time(NULL) + __LINE__); nt 473 source4/torture/rpc/samr.c TEST_USERINFO_INT(17, acct_expiry, 21, acct_expiry, nt, 0); nt 474 source4/torture/rpc/samr.c unix_to_nt_time(&nt, time(NULL) + __LINE__); nt 475 source4/torture/rpc/samr.c TEST_USERINFO_INT(17, acct_expiry, 5, acct_expiry, nt, 0); nt 476 source4/torture/rpc/samr.c unix_to_nt_time(&nt, time(NULL) + __LINE__); nt 477 source4/torture/rpc/samr.c TEST_USERINFO_INT(21, acct_expiry, 21, acct_expiry, nt, SAMR_FIELD_ACCT_EXPIRY); nt 478 source4/torture/rpc/samr.c unix_to_nt_time(&nt, time(NULL) + __LINE__); nt 479 source4/torture/rpc/samr.c TEST_USERINFO_INT(21, acct_expiry, 5, acct_expiry, nt, SAMR_FIELD_ACCT_EXPIRY); nt 480 source4/torture/rpc/samr.c unix_to_nt_time(&nt, time(NULL) + __LINE__); nt 481 source4/torture/rpc/samr.c TEST_USERINFO_INT(21, acct_expiry, 17, acct_expiry, nt, SAMR_FIELD_ACCT_EXPIRY); nt 2723 source4/torture/rpc/samr.c ninfo.nt.data = nt_resp.data; nt 2724 source4/torture/rpc/samr.c ninfo.nt.length = nt_resp.length; nt 74 source4/torture/rpc/samsync.c ninfo.nt.length = 24; nt 75 source4/torture/rpc/samsync.c ninfo.nt.data = talloc_array(mem_ctx, uint8_t, 24); nt 76 source4/torture/rpc/samsync.c SMBOWFencrypt(nt_hash->hash, ninfo.challenge, ninfo.nt.data); nt 78 source4/torture/rpc/samsync.c ninfo.nt.length = 0; nt 79 source4/torture/rpc/samsync.c ninfo.nt.data = NULL; nt 90 source4/torture/rpc/schannel.c ninfo.nt.data = nt_resp.data; nt 91 source4/torture/rpc/schannel.c ninfo.nt.length = nt_resp.length; nt 612 source4/torture/rpc/schannel.c conn->ninfo.nt.data = nt_resp.data; nt 613 source4/torture/rpc/schannel.c conn->ninfo.nt.length = nt_resp.length; nt 378 source4/torture/util_smb.c union smb_ioctl nt; nt 387 source4/torture/util_smb.c nt.ntioctl.level = RAW_IOCTL_NTIOCTL; nt 388 source4/torture/util_smb.c nt.ntioctl.in.function = FSCTL_SET_SPARSE; nt 389 source4/torture/util_smb.c nt.ntioctl.in.file.fnum = fnum; nt 390 source4/torture/util_smb.c nt.ntioctl.in.fsctl = true; nt 391 source4/torture/util_smb.c nt.ntioctl.in.filter = 0; nt 392 source4/torture/util_smb.c nt.ntioctl.in.max_data = 0; nt 393 source4/torture/util_smb.c nt.ntioctl.in.blob = data_blob(NULL, 0); nt 395 source4/torture/util_smb.c status = smb_raw_ioctl(tree, mem_ctx, &nt); nt 110 source4/winbind/wb_pam_auth.c ninfo->nt.length = tmp_nt_resp.length; nt 111 source4/winbind/wb_pam_auth.c ninfo->nt.data = tmp_nt_resp.data;