temp 13 examples/libsmbclient/get_auth_data_fn.h char temp[128];
temp 39 examples/libsmbclient/get_auth_data_fn.h fgets(temp, sizeof(temp), stdin);
temp 41 examples/libsmbclient/get_auth_data_fn.h if (temp[strlen(temp) - 1] == '\n') /* A new line? */
temp 43 examples/libsmbclient/get_auth_data_fn.h temp[strlen(temp) - 1] = '\0';
temp 46 examples/libsmbclient/get_auth_data_fn.h if (temp[0] != '\0')
temp 48 examples/libsmbclient/get_auth_data_fn.h strncpy(pWorkgroup, temp, maxLenWorkgroup - 1);
temp 52 examples/libsmbclient/get_auth_data_fn.h fgets(temp, sizeof(temp), stdin);
temp 54 examples/libsmbclient/get_auth_data_fn.h if (temp[strlen(temp) - 1] == '\n') /* A new line? */
temp 56 examples/libsmbclient/get_auth_data_fn.h temp[strlen(temp) - 1] = '\0';
temp 59 examples/libsmbclient/get_auth_data_fn.h if (temp[0] != '\0')
temp 61 examples/libsmbclient/get_auth_data_fn.h strncpy(pUsername, temp, maxLenUsername - 1);
temp 65 examples/libsmbclient/get_auth_data_fn.h fgets(temp, sizeof(temp), stdin);
temp 67 examples/libsmbclient/get_auth_data_fn.h if (temp[strlen(temp) - 1] == '\n') /* A new line? */
temp 69 examples/libsmbclient/get_auth_data_fn.h temp[strlen(temp) - 1] = '\0';
temp 72 examples/libsmbclient/get_auth_data_fn.h if (temp[0] != '\0')
temp 74 examples/libsmbclient/get_auth_data_fn.h strncpy(pPassword, temp, maxLenPassword - 1);
temp 426 lib/replace/replace.h int rep_mkstemp(char *temp);
temp 965 lib/replace/snprintf.c double temp;
temp 1006 lib/replace/snprintf.c temp = ufvalue;
temp 1007 lib/replace/snprintf.c my_modf(temp, &intpart);
temp 1019 lib/replace/snprintf.c temp = intpart*0.1;
temp 1020 lib/replace/snprintf.c my_modf(temp, &intpart);
temp 1021 lib/replace/snprintf.c idx = (int) ((temp -intpart +0.05)* 10.0);
temp 1034 lib/replace/snprintf.c temp = fracpart*0.1;
temp 1035 lib/replace/snprintf.c my_modf(temp, &fracpart);
temp 1036 lib/replace/snprintf.c idx = (int) ((temp -fracpart +0.05)* 10.0);
temp 606 lib/tdb/tools/tdbtool.c char temp[3];
temp 615 lib/tdb/tools/tdbtool.c temp[0] = *inp++;
temp 616 lib/tdb/tools/tdbtool.c temp[1] = '\0';
temp 618 lib/tdb/tools/tdbtool.c temp[1] = *inp++;
temp 619 lib/tdb/tools/tdbtool.c temp[2] = '\0';
temp 621 lib/tdb/tools/tdbtool.c *outp++ = (char)strtol((const char *)temp,NULL,16);
temp 45 lib/util/util_pw.c struct passwd *temp;
temp 47 lib/util/util_pw.c temp = sys_getpwnam(name);
temp 49 lib/util/util_pw.c if (!temp) {
temp 58 lib/util/util_pw.c return alloc_copy_passwd(mem_ctx, temp);
temp 63 lib/util/util_pw.c struct passwd *temp;
temp 65 lib/util/util_pw.c temp = sys_getpwuid(uid);
temp 67 lib/util/util_pw.c if (!temp) {
temp 76 lib/util/util_pw.c return alloc_copy_passwd(mem_ctx, temp);
temp 37 lib/zlib/contrib/minizip/crypt.h unsigned temp; /* POTENTIAL BUG: temp*(temp^1) may overflow in an
temp 41 lib/zlib/contrib/minizip/crypt.h temp = ((unsigned)(*(pkeys+2)) & 0xffff) | 2;
temp 42 lib/zlib/contrib/minizip/crypt.h return (int)(((temp * (temp ^ 1)) >> 8) & 0xff);
temp 209 lib/zlib/examples/gun.c unsigned temp; /* current code */
temp 306 lib/zlib/examples/gun.c temp = code; /* save the current code */
temp 340 lib/zlib/examples/gun.c prev = temp;
temp 135 lib/zlib/examples/gzlog.c unsigned char temp[20];
temp 168 lib/zlib/examples/gzlog.c if (read(log->fd, temp, 12) != 12 || temp[0] != 0x1f ||
temp 169 lib/zlib/examples/gzlog.c temp[1] != 0x8b || temp[2] != 8 || (temp[3] & 4) == 0) {
temp 175 lib/zlib/examples/gzlog.c xlen = temp[10] + (temp[11] << 8);
temp 178 lib/zlib/examples/gzlog.c if (xlen < 4 || read(log->fd, temp, 4) != 4)
temp 180 lib/zlib/examples/gzlog.c sub_len = temp[2];
temp 181 lib/zlib/examples/gzlog.c sub_len += temp[3] << 8;
temp 183 lib/zlib/examples/gzlog.c if (memcmp(temp, "ap", 2) == 0 && sub_len == 16) {
temp 199 lib/zlib/examples/gzlog.c if (read(log->fd, temp, 16) != 16) {
temp 203 lib/zlib/examples/gzlog.c log->mark_off = make_off(temp);
temp 204 lib/zlib/examples/gzlog.c log->last_off = make_off(temp + 8);
temp 208 lib/zlib/examples/gzlog.c if (read(log->fd, temp, 13) != 13 ||
temp 209 lib/zlib/examples/gzlog.c memcmp(temp, "\001\000\000\377\377", 5) != 0) {
temp 213 lib/zlib/examples/gzlog.c log->crc = make_ulg(temp + 5);
temp 214 lib/zlib/examples/gzlog.c log->len = make_ulg(temp + 9);
temp 229 lib/zlib/examples/gzlog.c unsigned char temp[5];
temp 253 lib/zlib/examples/gzlog.c temp[0] = 0;
temp 255 lib/zlib/examples/gzlog.c temp + 1);
temp 256 lib/zlib/examples/gzlog.c if (write(log->fd, temp, 5) != 5)
temp 273 lib/zlib/examples/gzlog.c unsigned char temp[16];
temp 342 lib/zlib/examples/gzlog.c temp[0] = 1;
temp 343 lib/zlib/examples/gzlog.c dice_ulg(0xffffL << 16, temp + 1);
temp 344 lib/zlib/examples/gzlog.c dice_ulg(log->crc, temp + 5);
temp 345 lib/zlib/examples/gzlog.c dice_ulg(log->len, temp + 9);
temp 346 lib/zlib/examples/gzlog.c if (write(log->fd, temp, 13) != 13)
temp 354 lib/zlib/examples/gzlog.c dice_off(log->mark_off, temp);
temp 355 lib/zlib/examples/gzlog.c dice_off(log->last_off, temp + 8);
temp 356 lib/zlib/examples/gzlog.c if (write(log->fd, temp, 16) != 16)
temp 367 lib/zlib/examples/gzlog.c unsigned char temp[8];
temp 380 lib/zlib/examples/gzlog.c temp[0] = 0;
temp 382 lib/zlib/examples/gzlog.c temp + 1);
temp 383 lib/zlib/examples/gzlog.c if (write(log->fd, temp, 5) != 5)
temp 393 lib/zlib/examples/gzlog.c dice_ulg(log->crc, temp);
temp 394 lib/zlib/examples/gzlog.c dice_ulg(log->len, temp + 4);
temp 395 lib/zlib/examples/gzlog.c if (write(log->fd, temp, 8) != 8)
temp 400 lib/zlib/examples/gzlog.c dice_off(log->last_off, temp);
temp 401 lib/zlib/examples/gzlog.c if (write(log->fd, temp, 8) != 8)
temp 1088 source3/client/mount.cifs.c char * temp;
temp 1417 source3/client/mount.cifs.c temp = strrchr(options, '/');
temp 1418 source3/client/mount.cifs.c if(temp > options + 6)
temp 1419 source3/client/mount.cifs.c *temp = '\\';
temp 73 source3/lib/util_pw.c struct passwd *temp;
temp 75 source3/lib/util_pw.c temp = sys_getpwuid(uid);
temp 77 source3/lib/util_pw.c if (!temp) {
temp 86 source3/lib/util_pw.c return tcopy_passwd(mem_ctx, temp);
temp 98 source3/modules/charset_macosxfs.c char temp;
temp 101 source3/modules/charset_macosxfs.c temp = cp[1];
temp 103 source3/modules/charset_macosxfs.c cp[0] = temp;
temp 482 source3/passdb/pdb_ldap.c char *temp;
temp 485 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(ldap_state->smbldap_state->ldap_struct, entry,
temp 488 source3/passdb/pdb_ldap.c if (!temp) {
temp 492 source3/passdb/pdb_ldap.c if ( !strptime(temp, "%Y%m%d%H%M%SZ", &tm)) {
temp 494 source3/passdb/pdb_ldap.c (char*)temp));
temp 495 source3/passdb/pdb_ldap.c TALLOC_FREE(temp);
temp 498 source3/passdb/pdb_ldap.c TALLOC_FREE(temp);
temp 541 source3/passdb/pdb_ldap.c char *temp = NULL;
temp 591 source3/passdb/pdb_ldap.c if ((temp = smbldap_talloc_single_attribute(
temp 597 source3/passdb/pdb_ldap.c pdb_set_user_sid_from_string(sampass, temp, PDB_SET);
temp 600 source3/passdb/pdb_ldap.c if ((temp = smbldap_talloc_single_attribute(
temp 606 source3/passdb/pdb_ldap.c user_rid = (uint32)atol(temp);
temp 621 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 627 source3/passdb/pdb_ldap.c if (temp) {
temp 628 source3/passdb/pdb_ldap.c pass_last_set_time = (time_t) atol(temp);
temp 633 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 639 source3/passdb/pdb_ldap.c if (temp) {
temp 640 source3/passdb/pdb_ldap.c logon_time = (time_t) atol(temp);
temp 644 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 650 source3/passdb/pdb_ldap.c if (temp) {
temp 651 source3/passdb/pdb_ldap.c logoff_time = (time_t) atol(temp);
temp 655 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 661 source3/passdb/pdb_ldap.c if (temp) {
temp 662 source3/passdb/pdb_ldap.c kickoff_time = (time_t) atol(temp);
temp 666 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 672 source3/passdb/pdb_ldap.c if (temp) {
temp 673 source3/passdb/pdb_ldap.c pass_can_change_time = (time_t) atol(temp);
temp 678 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 684 source3/passdb/pdb_ldap.c if (temp) {
temp 685 source3/passdb/pdb_ldap.c pass_must_change_time = (time_t) atol(temp);
temp 871 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 877 source3/passdb/pdb_ldap.c if (temp) {
temp 878 source3/passdb/pdb_ldap.c pdb_gethexpwd(temp, smblmpwd);
temp 879 source3/passdb/pdb_ldap.c memset((char *)temp, '\0', strlen(temp)+1);
temp 886 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 892 source3/passdb/pdb_ldap.c if (temp) {
temp 893 source3/passdb/pdb_ldap.c pdb_gethexpwd(temp, smbntpwd);
temp 894 source3/passdb/pdb_ldap.c memset((char *)temp, '\0', strlen(temp)+1);
temp 959 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 965 source3/passdb/pdb_ldap.c if (temp) {
temp 966 source3/passdb/pdb_ldap.c acct_ctrl = pdb_decode_acct_ctrl(temp);
temp 980 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 986 source3/passdb/pdb_ldap.c if (temp) {
temp 987 source3/passdb/pdb_ldap.c bad_password_count = (uint32) atol(temp);
temp 992 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 998 source3/passdb/pdb_ldap.c if (temp) {
temp 999 source3/passdb/pdb_ldap.c bad_password_time = (time_t) atol(temp);
temp 1004 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 1010 source3/passdb/pdb_ldap.c if (temp) {
temp 1011 source3/passdb/pdb_ldap.c logon_count = (uint32) atol(temp);
temp 1017 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 1023 source3/passdb/pdb_ldap.c if (temp) {
temp 1024 source3/passdb/pdb_ldap.c pdb_gethexhours(temp, hours);
temp 1025 source3/passdb/pdb_ldap.c memset((char *)temp, '\0', strlen(temp) +1);
temp 1031 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 1036 source3/passdb/pdb_ldap.c if (temp) {
temp 1038 source3/passdb/pdb_ldap.c uid_t uid = strtoul(temp, NULL, 10);
temp 1103 source3/passdb/pdb_ldap.c char *temp = NULL;
temp 1144 source3/passdb/pdb_ldap.c if (asprintf(&temp, "%i", rid) < 0) {
temp 1149 source3/passdb/pdb_ldap.c temp);
temp 1150 source3/passdb/pdb_ldap.c SAFE_FREE(temp);
temp 1182 source3/passdb/pdb_ldap.c if (asprintf(&temp, "%i", rid) < 0) {
temp 1187 source3/passdb/pdb_ldap.c LDAP_ATTR_PRIMARY_GROUP_RID), temp);
temp 1188 source3/passdb/pdb_ldap.c SAFE_FREE(temp);
temp 1252 source3/passdb/pdb_ldap.c if (asprintf(&temp, "%li", (long int)pdb_get_logon_time(sampass)) < 0) {
temp 1257 source3/passdb/pdb_ldap.c get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_LOGON_TIME), temp);
temp 1258 source3/passdb/pdb_ldap.c SAFE_FREE(temp);
temp 1260 source3/passdb/pdb_ldap.c if (asprintf(&temp, "%li", (long int)pdb_get_logoff_time(sampass)) < 0) {
temp 1265 source3/passdb/pdb_ldap.c get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_LOGOFF_TIME), temp);
temp 1266 source3/passdb/pdb_ldap.c SAFE_FREE(temp);
temp 1268 source3/passdb/pdb_ldap.c if (asprintf(&temp, "%li", (long int)pdb_get_kickoff_time(sampass)) < 0) {
temp 1273 source3/passdb/pdb_ldap.c get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_KICKOFF_TIME), temp);
temp 1274 source3/passdb/pdb_ldap.c SAFE_FREE(temp);
temp 1276 source3/passdb/pdb_ldap.c if (asprintf(&temp, "%li", (long int)pdb_get_pass_can_change_time_noncalc(sampass)) < 0) {
temp 1281 source3/passdb/pdb_ldap.c get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_PWD_CAN_CHANGE), temp);
temp 1282 source3/passdb/pdb_ldap.c SAFE_FREE(temp);
temp 1284 source3/passdb/pdb_ldap.c if (asprintf(&temp, "%li", (long int)pdb_get_pass_must_change_time(sampass)) < 0) {
temp 1289 source3/passdb/pdb_ldap.c get_userattr_key2string(ldap_state->schema_ver, LDAP_ATTR_PWD_MUST_CHANGE), temp);
temp 1290 source3/passdb/pdb_ldap.c SAFE_FREE(temp);
temp 1363 source3/passdb/pdb_ldap.c if (asprintf(&temp, "%li",
temp 1369 source3/passdb/pdb_ldap.c temp);
temp 1370 source3/passdb/pdb_ldap.c SAFE_FREE(temp);
temp 1414 source3/passdb/pdb_ldap.c if (asprintf(&temp, "%li", (long)badcount) < 0) {
temp 1423 source3/passdb/pdb_ldap.c temp);
temp 1424 source3/passdb/pdb_ldap.c SAFE_FREE(temp);
temp 1426 source3/passdb/pdb_ldap.c if (asprintf(&temp, "%li", (long int)badtime) < 0) {
temp 1435 source3/passdb/pdb_ldap.c temp);
temp 1436 source3/passdb/pdb_ldap.c SAFE_FREE(temp);
temp 2331 source3/passdb/pdb_ldap.c char *temp = NULL;
temp 2341 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 2347 source3/passdb/pdb_ldap.c if (!temp) {
temp 2353 source3/passdb/pdb_ldap.c DEBUG(2, ("init_group_from_ldap: Entry found for group: %s\n", temp));
temp 2355 source3/passdb/pdb_ldap.c map->gid = (gid_t)atol(temp);
temp 2357 source3/passdb/pdb_ldap.c TALLOC_FREE(temp);
temp 2358 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 2364 source3/passdb/pdb_ldap.c if (!temp) {
temp 2371 source3/passdb/pdb_ldap.c if (!string_to_sid(&map->sid, temp)) {
temp 2372 source3/passdb/pdb_ldap.c DEBUG(1, ("SID string [%s] could not be read as a valid SID\n", temp));
temp 2377 source3/passdb/pdb_ldap.c TALLOC_FREE(temp);
temp 2378 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 2384 source3/passdb/pdb_ldap.c if (!temp) {
temp 2390 source3/passdb/pdb_ldap.c map->sid_name_use = (enum lsa_SidType)atol(temp);
temp 2399 source3/passdb/pdb_ldap.c TALLOC_FREE(temp);
temp 2400 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 2406 source3/passdb/pdb_ldap.c if (!temp) {
temp 2407 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 2413 source3/passdb/pdb_ldap.c if (!temp) {
temp 2420 source3/passdb/pdb_ldap.c fstrcpy(map->nt_name, temp);
temp 2422 source3/passdb/pdb_ldap.c TALLOC_FREE(temp);
temp 2423 source3/passdb/pdb_ldap.c temp = smbldap_talloc_single_attribute(
temp 2429 source3/passdb/pdb_ldap.c if (!temp) {
temp 2430 source3/passdb/pdb_ldap.c temp = talloc_strdup(ctx, "");
temp 2431 source3/passdb/pdb_ldap.c if (!temp) {
temp 2436 source3/passdb/pdb_ldap.c fstrcpy(map->comment, temp);
temp 5485 source3/printing/nt_printing.c char *temp;
temp 5488 source3/printing/nt_printing.c if (strlen(sharename) > 2 && (temp = strchr(sharename + 2, '\\'))) {
temp 5489 source3/printing/nt_printing.c sharename = temp + 1;
temp 1070 source3/printing/print_cups.c *temp; /* Temporary pointer for queue */
temp 1209 source3/printing/print_cups.c temp = queue + qcount;
temp 1210 source3/printing/print_cups.c memset(temp, 0, sizeof(print_queue_struct));
temp 1284 source3/printing/print_cups.c temp->job = job_id;
temp 1285 source3/printing/print_cups.c temp->size = job_k_octets * 1024;
temp 1286 source3/printing/print_cups.c temp->status = job_status == IPP_JOB_PENDING ? LPQ_QUEUED :
temp 1290 source3/printing/print_cups.c temp->priority = job_priority;
temp 1291 source3/printing/print_cups.c temp->time = job_time;
temp 1292 source3/printing/print_cups.c strlcpy(temp->fs_user, user_name, sizeof(temp->fs_user));
temp 1293 source3/printing/print_cups.c strlcpy(temp->fs_file, job_name, sizeof(temp->fs_file));
temp 80 source3/printing/print_iprint.c char *temp; /* pointer for string manipulation */
temp 140 source3/printing/print_iprint.c if ((temp = strchr(os,'<')) != NULL)
temp 141 source3/printing/print_iprint.c *temp = '\0';
temp 862 source3/printing/print_iprint.c *temp; /* Temporary pointer for queue */
temp 1087 source3/printing/print_iprint.c temp = queue + qcount;
temp 1088 source3/printing/print_iprint.c memset(temp, 0, sizeof(print_queue_struct));
temp 1164 source3/printing/print_iprint.c temp->job = job_id;
temp 1165 source3/printing/print_iprint.c temp->size = job_k_octets * 1024;
temp 1166 source3/printing/print_iprint.c temp->status = job_status == IPP_JOB_PENDING ? LPQ_QUEUED :
temp 1170 source3/printing/print_iprint.c temp->priority = job_priority;
temp 1171 source3/printing/print_iprint.c temp->time = job_time;
temp 1172 source3/printing/print_iprint.c strncpy(temp->fs_user, user_name, sizeof(temp->fs_user) - 1);
temp 1173 source3/printing/print_iprint.c strncpy(temp->fs_file, job_name, sizeof(temp->fs_file) - 1);
temp 161 source3/registry/reg_perfcount.c char temp[256];
temp 166 source3/registry/reg_perfcount.c memset(temp, 0, sizeof(temp));
temp 167 source3/registry/reg_perfcount.c snprintf(temp, sizeof(temp), "%d", keyval);
temp 168 source3/registry/reg_perfcount.c kbuf = string_tdb_data(temp);
temp 175 source3/registry/reg_perfcount.c temp, tdb_name(tdb)));
temp 195 source3/registry/reg_perfcount.c memset(temp, 0, sizeof(temp));
temp 196 source3/registry/reg_perfcount.c memcpy(temp, dbuf.dptr, dbuf.dsize);
temp 198 source3/registry/reg_perfcount.c init_unistr2(&name, temp, UNI_STR_TERMINATE);
temp 670 source3/registry/reg_perfcount.c char buf[PERFCOUNT_MAX_LEN], temp[PERFCOUNT_MAX_LEN];
temp 675 source3/registry/reg_perfcount.c memset(temp, 0, PERFCOUNT_MAX_LEN);
temp 676 source3/registry/reg_perfcount.c snprintf(temp, PERFCOUNT_MAX_LEN, "i%d", instId);
temp 677 source3/registry/reg_perfcount.c _reg_perfcount_make_key(&key, buf, PERFCOUNT_MAX_LEN, obj->ObjectNameTitleIndex, temp);
temp 700 source3/registry/reg_perfcount.c memset(temp, 0, PERFCOUNT_MAX_LEN);
temp 701 source3/registry/reg_perfcount.c snprintf(temp, PERFCOUNT_MAX_LEN, "i%dname", instId);
temp 702 source3/registry/reg_perfcount.c _reg_perfcount_make_key(&key, buf, PERFCOUNT_MAX_LEN, obj->ObjectNameTitleIndex, temp);
temp 902 source3/registry/reg_perfcount.c smb_ucs2_t *temp = NULL;
temp 905 source3/registry/reg_perfcount.c if (rpcstr_push_talloc(ps->mem_ctx, &temp, "PERF")==(size_t)-1) {
temp 908 source3/registry/reg_perfcount.c if (!temp) {
temp 911 source3/registry/reg_perfcount.c memcpy(block->Signature, temp, strlen_w(temp) *2);
temp 926 source3/registry/reg_perfcount.c memset(temp, 0, sizeof(temp));
temp 927 source3/registry/reg_perfcount.c rpcstr_push((void *)temp, global_myname(), sizeof(temp), STR_TERMINATE);
temp 928 source3/registry/reg_perfcount.c block->SystemNameLength = (strlen_w(temp) * 2) + 2;
temp 933 source3/registry/reg_perfcount.c memcpy(block->data, temp, block->SystemNameLength);
temp 953 source3/registry/reg_perfcount.c char *temp = NULL, *src_addr, *dst_addr;
temp 977 source3/registry/reg_perfcount.c temp = TALLOC_REALLOC_ARRAY(ps->mem_ctx,
temp 978 source3/registry/reg_perfcount.c temp,
temp 981 source3/registry/reg_perfcount.c if (temp == NULL) {
temp 984 source3/registry/reg_perfcount.c memset(temp, 0, counter_data->ByteLength - sizeof(counter_data->ByteLength));
temp 989 source3/registry/reg_perfcount.c dst_addr = temp + counter->CounterOffset - sizeof(counter_data->ByteLength);
temp 1006 source3/registry/reg_perfcount.c memcpy(counter_data->data, temp, counter_data->ByteLength - sizeof(counter_data->ByteLength));
temp 317 source3/smbd/lanman.c int32 temp;
temp 343 source3/smbd/lanman.c temp = va_arg(args,int);
temp 345 source3/smbd/lanman.c SSVAL(p->structbuf,0,temp);
temp 350 source3/smbd/lanman.c temp = va_arg(args,int);
temp 352 source3/smbd/lanman.c SSVAL(p->structbuf,0,temp);
temp 364 source3/smbd/lanman.c temp = va_arg(args,int);
temp 366 source3/smbd/lanman.c SIVAL(p->structbuf,0,temp);
temp 54 source3/smbd/msdfs.c char *p,*temp;
temp 74 source3/smbd/msdfs.c p = temp = pathname_local;
temp 93 source3/smbd/msdfs.c p = temp;
temp 96 source3/smbd/msdfs.c temp));
temp 104 source3/smbd/msdfs.c trim_char(temp,sepchar,sepchar);
temp 107 source3/smbd/msdfs.c temp, sepchar));
temp 111 source3/smbd/msdfs.c p = strchr_m(temp,sepchar);
temp 114 source3/smbd/msdfs.c temp));
temp 123 source3/smbd/msdfs.c p = temp;
temp 126 source3/smbd/msdfs.c temp));
temp 130 source3/smbd/msdfs.c pdp->hostname = temp;
temp 165 source3/smbd/msdfs.c p = temp;
temp 168 source3/smbd/msdfs.c temp));
temp 330 source3/smbd/msdfs.c char *temp = NULL;
temp 337 source3/smbd/msdfs.c temp = talloc_strdup(ctx, target);
temp 338 source3/smbd/msdfs.c if (!temp) {
temp 341 source3/smbd/msdfs.c prot = strtok_r(temp, ":", &saveptr);
temp 262 source3/utils/pdbedit.c char temp[44];
temp 313 source3/utils/pdbedit.c pdb_sethexhours(temp, hours);
temp 314 source3/utils/pdbedit.c printf ("Logon hours : %s\n", temp);
temp 1088 source3/winbindd/winbindd_util.c struct getent_state *temp;
temp 1092 source3/winbindd/winbindd_util.c temp = state;
temp 1094 source3/winbindd/winbindd_util.c while(temp != NULL) {
temp 1095 source3/winbindd/winbindd_util.c struct getent_state *next = temp->next;
temp 1102 source3/winbindd/winbindd_util.c SAFE_FREE(temp);
temp 1103 source3/winbindd/winbindd_util.c temp = next;
temp 202 source4/client/mount.cifs.c char temp[64];
temp 141 source4/heimdal/lib/hcrypto/imath/imath.c #define TEMP(K) (temp + (K))
temp 858 source4/heimdal/lib/hcrypto/imath/imath.c mpz_t temp[2];
temp 1191 source4/heimdal/lib/hcrypto/imath/imath.c mpz_t temp[3];
temp 1268 source4/heimdal/lib/hcrypto/imath/imath.c mpz_t temp[2];
temp 1325 source4/heimdal/lib/hcrypto/imath/imath.c mpz_t temp[2];
temp 1457 source4/heimdal/lib/hcrypto/imath/imath.c mpz_t temp[8];
temp 1634 source4/heimdal/lib/hcrypto/imath/imath.c mpz_t temp[5];
temp 3014 source4/heimdal/lib/hcrypto/imath/imath.c mpz_t temp[3];
temp 747 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c u32 temp;
temp 755 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c temp = rk[3];
temp 757 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c (Te4[(temp >> 16) & 0xff] & 0xff000000) ^
temp 758 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c (Te4[(temp >> 8) & 0xff] & 0x00ff0000) ^
temp 759 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c (Te4[(temp ) & 0xff] & 0x0000ff00) ^
temp 760 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c (Te4[(temp >> 24) ] & 0x000000ff) ^
temp 775 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c temp = rk[ 5];
temp 777 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c (Te4[(temp >> 16) & 0xff] & 0xff000000) ^
temp 778 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c (Te4[(temp >> 8) & 0xff] & 0x00ff0000) ^
temp 779 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c (Te4[(temp ) & 0xff] & 0x0000ff00) ^
temp 780 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c (Te4[(temp >> 24) ] & 0x000000ff) ^
temp 797 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c temp = rk[ 7];
temp 799 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c (Te4[(temp >> 16) & 0xff] & 0xff000000) ^
temp 800 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c (Te4[(temp >> 8) & 0xff] & 0x00ff0000) ^
temp 801 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c (Te4[(temp ) & 0xff] & 0x0000ff00) ^
temp 802 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c (Te4[(temp >> 24) ] & 0x000000ff) ^
temp 810 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c temp = rk[11];
temp 812 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c (Te4[(temp >> 24) ] & 0xff000000) ^
temp 813 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c (Te4[(temp >> 16) & 0xff] & 0x00ff0000) ^
temp 814 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c (Te4[(temp >> 8) & 0xff] & 0x0000ff00) ^
temp 815 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c (Te4[(temp ) & 0xff] & 0x000000ff);
temp 833 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c u32 temp;
temp 839 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c temp = rk[i ]; rk[i ] = rk[j ]; rk[j ] = temp;
temp 840 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c temp = rk[i + 1]; rk[i + 1] = rk[j + 1]; rk[j + 1] = temp;
temp 841 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c temp = rk[i + 2]; rk[i + 2] = rk[j + 2]; rk[j + 2] = temp;
temp 842 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c temp = rk[i + 3]; rk[i + 3] = rk[j + 3]; rk[j + 3] = temp;
temp 75 source4/heimdal/lib/hcrypto/sha.c uint32_t temp; \
temp 77 source4/heimdal/lib/hcrypto/sha.c temp = cshift(AA, 5) + f(BB,CC,DD) + EE + data[t] + k; \
temp 82 source4/heimdal/lib/hcrypto/sha.c AA = temp; \
temp 1238 source4/heimdal/lib/ntlm/ntlm.c uint32_t temp;
temp 1262 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_ret_uint32(sp, &temp), 0);
temp 1263 source4/heimdal/lib/ntlm/ntlm.c CHECK(temp, 0x00000101);
temp 1264 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_ret_uint32(sp, &temp), 0);
temp 1265 source4/heimdal/lib/ntlm/ntlm.c CHECK(temp, 0);
temp 1267 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_ret_uint32(sp, &temp), 0);
temp 1268 source4/heimdal/lib/ntlm/ntlm.c t = temp;
temp 1269 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_ret_uint32(sp, &temp), 0);
temp 1270 source4/heimdal/lib/ntlm/ntlm.c t |= ((uint64_t)temp)<< 32;
temp 1282 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_ret_uint32(sp, &temp), 0); /* unknown */