tmp 548 lib/async_req/async_sock.c uint8_t *tmp;
tmp 588 lib/async_req/async_sock.c tmp = TALLOC_REALLOC_ARRAY(state, state->buf, uint8_t, total+more);
tmp 589 lib/async_req/async_sock.c if (tevent_req_nomem(tmp, req)) {
tmp 592 lib/async_req/async_sock.c state->buf = tmp;
tmp 78 lib/replace/inet_ntop.c char tmp[sizeof "255.255.255.255"];
tmp 81 lib/replace/inet_ntop.c len = snprintf(tmp, sizeof tmp, fmt, src[0], src[1], src[2], src[3]);
tmp 86 lib/replace/inet_ntop.c memcpy(dst, tmp, len + 1);
tmp 108 lib/replace/inet_ntop.c char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"], *tp;
tmp 149 lib/replace/inet_ntop.c tp = tmp;
tmp 164 lib/replace/inet_ntop.c if (!inet_ntop4(src+12, tp, sizeof tmp - (tp - tmp)))
tmp 184 lib/replace/inet_ntop.c if ((size_t)(tp - tmp) > size) {
tmp 188 lib/replace/inet_ntop.c memcpy(dst, tmp, tp - tmp);
tmp 82 lib/replace/inet_pton.c unsigned char tmp[NS_INADDRSZ], *tp;
tmp 86 lib/replace/inet_pton.c *(tp = tmp) = 0;
tmp 111 lib/replace/inet_pton.c memcpy(dst, tmp, NS_INADDRSZ);
tmp 136 lib/replace/inet_pton.c unsigned char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp;
tmp 141 lib/replace/inet_pton.c memset((tp = tmp), '\0', NS_IN6ADDRSZ);
tmp 210 lib/replace/inet_pton.c memcpy(dst, tmp, NS_IN6ADDRSZ);
tmp 116 lib/replace/test/testsuite.c char tmp[10];
tmp 118 lib/replace/test/testsuite.c strlcpy(tmp, "", sizeof(tmp));
tmp 119 lib/replace/test/testsuite.c if (strlcat(tmp, "bla", 3) != 3) {
tmp 123 lib/replace/test/testsuite.c if (strcmp(tmp, "bl") != 0) {
tmp 125 lib/replace/test/testsuite.c tmp);
tmp 129 lib/replace/test/testsuite.c strlcpy(tmp, "da", sizeof(tmp));
tmp 130 lib/replace/test/testsuite.c if (strlcat(tmp, "me", 4) != 4) {
tmp 132 lib/replace/test/testsuite.c tmp);
tmp 345 lib/replace/test/testsuite.c char tmp[10];
tmp 347 lib/replace/test/testsuite.c if (snprintf(tmp, 3, "foo%d", 9) != 4) {
tmp 352 lib/replace/test/testsuite.c if (strcmp(tmp, "fo") != 0) {
tmp 69 lib/tevent/tevent_util.h type tmp; \
tmp 70 lib/tevent/tevent_util.h for (tmp = (list); tmp->next; tmp = tmp->next) ; \
tmp 71 lib/tevent/tevent_util.h tmp->next = (p); \
tmp 73 lib/tevent/tevent_util.h (p)->prev = tmp; \
tmp 92 lib/tevent/tevent_util.h #define DLIST_DEMOTE(list, p, tmp) \
tmp 95 lib/tevent/tevent_util.h DLIST_ADD_END(list, p, tmp); \
tmp 105 lib/tevent/tevent_util.h type tmp; \
tmp 106 lib/tevent/tevent_util.h for (tmp = (list1); tmp->next; tmp = tmp->next) ; \
tmp 107 lib/tevent/tevent_util.h tmp->next = (list2); \
tmp 109 lib/tevent/tevent_util.h (list2)->prev = tmp; \
tmp 103 lib/torture/torture.c char *tmp;
tmp 109 lib/torture/torture.c tmp = talloc_vasprintf(context, comment, ap);
tmp 111 lib/torture/torture.c context->results->ui_ops->comment(context, tmp);
tmp 113 lib/torture/torture.c talloc_free(tmp);
tmp 122 lib/torture/torture.c char *tmp;
tmp 128 lib/torture/torture.c tmp = talloc_vasprintf(context, comment, ap);
tmp 130 lib/torture/torture.c context->results->ui_ops->warning(context, tmp);
tmp 132 lib/torture/torture.c talloc_free(tmp);
tmp 323 lib/util/asn1.c uint8_t tmp = 0;
tmp 325 lib/util/asn1.c asn1_read_uint8(data, &tmp);
tmp 326 lib/util/asn1.c if (tmp == 0xFF) {
tmp 68 lib/util/dlinklist.h type tmp; \
tmp 69 lib/util/dlinklist.h for (tmp = (list); tmp->next; tmp = tmp->next) ; \
tmp 70 lib/util/dlinklist.h tmp->next = (p); \
tmp 72 lib/util/dlinklist.h (p)->prev = tmp; \
tmp 91 lib/util/dlinklist.h #define DLIST_DEMOTE(list, p, tmp) \
tmp 94 lib/util/dlinklist.h DLIST_ADD_END(list, p, tmp); \
tmp 104 lib/util/dlinklist.h type tmp; \
tmp 105 lib/util/dlinklist.h for (tmp = (list1); tmp->next; tmp = tmp->next) ; \
tmp 106 lib/util/dlinklist.h tmp->next = (list2); \
tmp 108 lib/util/dlinklist.h (list2)->prev = tmp; \
tmp 119 lib/util/rbtree.c register struct rb_node *tmp;
tmp 121 lib/util/rbtree.c tmp = parent;
tmp 123 lib/util/rbtree.c node = tmp;
tmp 144 lib/util/rbtree.c register struct rb_node *tmp;
tmp 146 lib/util/rbtree.c tmp = parent;
tmp 148 lib/util/rbtree.c node = tmp;
tmp 69 lib/util/talloc_stack.c TALLOC_CTX **tmp, *top, *parent;
tmp 72 lib/util/talloc_stack.c tmp = talloc_realloc(NULL, talloc_stack, TALLOC_CTX *,
tmp 74 lib/util/talloc_stack.c if (tmp == NULL) {
tmp 77 lib/util/talloc_stack.c talloc_stack = tmp;
tmp 27 lib/util/tests/str.c char tmp[100];
tmp 28 lib/util/tests/str.c safe_strcpy(tmp, "foobar", sizeof(tmp));
tmp 29 lib/util/tests/str.c string_sub(tmp, "foo", "bar", sizeof(tmp));
tmp 30 lib/util/tests/str.c torture_assert_str_equal(tctx, tmp, "barbar", "invalid sub");
tmp 36 lib/util/tests/str.c char tmp[100];
tmp 37 lib/util/tests/str.c safe_strcpy(tmp, "fooblafoo", sizeof(tmp));
tmp 38 lib/util/tests/str.c string_sub(tmp, "foo", "bar", sizeof(tmp));
tmp 39 lib/util/tests/str.c torture_assert_str_equal(tctx, tmp, "barblabar", "invalid sub");
tmp 45 lib/util/tests/str.c char tmp[100];
tmp 46 lib/util/tests/str.c safe_strcpy(tmp, "foobla", sizeof(tmp));
tmp 47 lib/util/tests/str.c string_sub(tmp, "foo", "blie", sizeof(tmp));
tmp 48 lib/util/tests/str.c torture_assert_str_equal(tctx, tmp, "bliebla", "invalid sub");
tmp 54 lib/util/tests/str.c char tmp[100];
tmp 55 lib/util/tests/str.c safe_strcpy(tmp, "foobla", sizeof(tmp));
tmp 56 lib/util/tests/str.c string_sub(tmp, "foo", "bl", sizeof(tmp));
tmp 57 lib/util/tests/str.c torture_assert_str_equal(tctx, tmp, "blbla", "invalid sub");
tmp 63 lib/util/tests/str.c char tmp[100];
tmp 64 lib/util/tests/str.c safe_strcpy(tmp, "foobla", sizeof(tmp));
tmp 65 lib/util/tests/str.c string_sub(tmp, "foo", "%b;l", sizeof(tmp));
tmp 66 lib/util/tests/str.c torture_assert_str_equal(tctx, tmp, "_b_lbla", "invalid sub");
tmp 39 lib/util/tests/strlist.c const char **ret1, **ret2, *tmp;
tmp 44 lib/util/tests/strlist.c tmp = str_list_join_shell(mem_ctx, ret1, ' ');
tmp 45 lib/util/tests/strlist.c ret2 = str_list_make_shell(mem_ctx, tmp, " ");
tmp 63 lib/util/tests/strlist.c "str_list_{make,join}_shell: Error double parsing, first run:\n%s\nSecond run: \n%s", data, tmp));
tmp 133 lib/zlib/examples/fitblk.c unsigned char *tmp; /* close to desired size stream */
tmp 186 lib/zlib/examples/fitblk.c tmp = malloc(size + EXCESS);
tmp 187 lib/zlib/examples/fitblk.c if (ret != Z_OK || tmp == NULL)
tmp 196 lib/zlib/examples/fitblk.c def.next_out = tmp;
tmp 209 lib/zlib/examples/fitblk.c inf.next_in = tmp;
tmp 223 lib/zlib/examples/fitblk.c free(tmp);
tmp 123 lib/zlib/examples/gzappend.c unsigned char tmp;
tmp 137 lib/zlib/examples/gzappend.c tmp = *list;
tmp 139 lib/zlib/examples/gzappend.c *last = tmp;
tmp 145 lib/zlib/examples/gzappend.c tmp = *last;
tmp 147 lib/zlib/examples/gzappend.c *list = tmp;
tmp 155 lib/zlib/examples/gzappend.c tmp = *from; /* save entry to be overwritten */
tmp 163 lib/zlib/examples/gzappend.c *to = tmp; /* complete the circle */
tmp 35 nsswitch/libwbclient/wbc_sid.c char *tmp = NULL;
tmp 47 nsswitch/libwbclient/wbc_sid.c tmp = talloc_asprintf(NULL, "S-%d-%d", sid->sid_rev_num, id_auth);
tmp 48 nsswitch/libwbclient/wbc_sid.c BAIL_ON_PTR_ERROR(tmp, wbc_status);
tmp 52 nsswitch/libwbclient/wbc_sid.c tmp2 = talloc_asprintf_append(tmp, "-%u", sid->sub_auths[i]);
tmp 55 nsswitch/libwbclient/wbc_sid.c tmp = tmp2;
tmp 58 nsswitch/libwbclient/wbc_sid.c *sid_string = tmp;
tmp 59 nsswitch/libwbclient/wbc_sid.c tmp = NULL;
tmp 64 nsswitch/libwbclient/wbc_sid.c talloc_free(tmp);
tmp 668 nsswitch/libwbclient/wbc_sid.c const char **tmp;
tmp 678 nsswitch/libwbclient/wbc_sid.c tmp = talloc_realloc(NULL, users,
tmp 681 nsswitch/libwbclient/wbc_sid.c BAIL_ON_PTR_ERROR(tmp, wbc_status);
tmp 682 nsswitch/libwbclient/wbc_sid.c users = tmp;
tmp 736 nsswitch/libwbclient/wbc_sid.c const char **tmp;
tmp 746 nsswitch/libwbclient/wbc_sid.c tmp = talloc_realloc(NULL, groups,
tmp 749 nsswitch/libwbclient/wbc_sid.c BAIL_ON_PTR_ERROR(tmp, wbc_status);
tmp 750 nsswitch/libwbclient/wbc_sid.c groups = tmp;
tmp 2810 nsswitch/pam_winbind.c void *tmp = NULL;
tmp 2849 nsswitch/pam_winbind.c (const void **)&tmp);
tmp 2850 nsswitch/pam_winbind.c if (tmp != NULL) {
tmp 2851 nsswitch/pam_winbind.c ret = atoi((const char *)tmp);
tmp 137 nsswitch/wbinfo.c char *tmp, *endptr;
tmp 142 nsswitch/wbinfo.c tmp = strtok(arg, ",");
tmp 145 nsswitch/wbinfo.c if (!tmp || !*tmp || !*sid || !**sid)
tmp 150 nsswitch/wbinfo.c *id = strtoul(tmp, &endptr, 10);
tmp 128 source3/auth/auth.c uchar tmp[8];
tmp 130 source3/auth/auth.c generate_random_buffer(tmp, sizeof(tmp));
tmp 132 source3/auth/auth.c tmp, sizeof(tmp));
tmp 528 source3/auth/auth_util.c fstring tmp;
tmp 530 source3/auth/auth_util.c alpha_strcpy(tmp, username, ". _-$", sizeof(tmp));
tmp 531 source3/auth/auth_util.c return talloc_strdup(mem_ctx, tmp);
tmp 1267 source3/auth/auth_util.c fstring tmp;
tmp 1306 source3/auth/auth_util.c alpha_strcpy(tmp, pdb_get_username(sampass), ". _-$", sizeof(tmp));
tmp 1307 source3/auth/auth_util.c (*server_info)->sanitized_username = talloc_strdup(*server_info, tmp);
tmp 1539 source3/client/client.c NTTIME tmp;
tmp 1558 source3/client/client.c unix_timespec_to_nt_time(&tmp, b_time);
tmp 1559 source3/client/client.c d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
tmp 1561 source3/client/client.c unix_timespec_to_nt_time(&tmp, a_time);
tmp 1562 source3/client/client.c d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
tmp 1564 source3/client/client.c unix_timespec_to_nt_time(&tmp, m_time);
tmp 1565 source3/client/client.c d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
tmp 1567 source3/client/client.c unix_timespec_to_nt_time(&tmp, c_time);
tmp 1568 source3/client/client.c d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
tmp 4123 source3/client/client.c char *tmp;
tmp 4125 source3/client/client.c tmp = talloc_strdup(ctx,info->dirmask);
tmp 4126 source3/client/client.c if (!tmp) {
tmp 4130 source3/client/client.c tmp = talloc_asprintf_append(tmp, "%s", f->name);
tmp 4131 source3/client/client.c if (!tmp) {
tmp 4136 source3/client/client.c tmp = talloc_asprintf_append(tmp, "%s", CLI_DIRSEP_STR);
tmp 4138 source3/client/client.c if (!tmp) {
tmp 4142 source3/client/client.c info->matches[info->count] = SMB_STRDUP(tmp);
tmp 142 source3/client/clitar.c char *tmp;
tmp 144 source3/client/clitar.c tmp = (char *)SMB_MALLOC(size+1);
tmp 146 source3/client/clitar.c if (tmp == NULL) {
tmp 150 source3/client/clitar.c return(tmp);
tmp 83 source3/client/smbspool.c *tmp, *tmp2, /* Temp pointers to do escaping */
tmp 175 source3/client/smbspool.c tmp = uri + 6;
tmp 186 source3/client/smbspool.c if ((tmp2 = strchr_m(tmp, ':')) != NULL) {
tmp 192 source3/client/smbspool.c username = uri_unescape_alloc(tmp);
tmp 205 source3/client/smbspool.c tmp = server;
tmp 207 source3/client/smbspool.c if ((sep = strchr_m(tmp, '/')) == NULL) {
tmp 222 source3/client/smbspool.c workgroup = uri_unescape_alloc(tmp);
tmp 227 source3/client/smbspool.c server = uri_unescape_alloc(tmp);
tmp 315 source3/groupdb/mapping_tdb.c GROUP_MAP *tmp;
tmp 341 source3/groupdb/mapping_tdb.c if (!(tmp = SMB_REALLOC_ARRAY(state->maps, GROUP_MAP,
tmp 348 source3/groupdb/mapping_tdb.c state->maps = tmp;
tmp 383 source3/groupdb/mapping_tdb.c fstring tmp;
tmp 392 source3/groupdb/mapping_tdb.c sid_to_fstring(tmp, member));
tmp 100 source3/lib/access.c DATA_BLOB tmp;
tmp 108 source3/lib/access.c &tmp)) {
tmp 110 source3/lib/access.c SMB_ASSERT(tmp.length > 0);
tmp 111 source3/lib/access.c mydomain = (tmp.data[0] == '\0')
tmp 112 source3/lib/access.c ? NULL : (char *)tmp.data;
tmp 429 source3/lib/account_pol.c uint32 tmp = strtoul(cache_value, NULL, 10);
tmp 430 source3/lib/account_pol.c *value = tmp;
tmp 185 source3/lib/afs_settoken.c int tmp;
tmp 192 source3/lib/afs_settoken.c tmp = sizeof(struct ClearToken);
tmp 193 source3/lib/afs_settoken.c memcpy(p, &tmp, sizeof(uint32));
tmp 195 source3/lib/afs_settoken.c memcpy(p, ctok, tmp);
tmp 196 source3/lib/afs_settoken.c p += tmp;
tmp 198 source3/lib/afs_settoken.c tmp = 0;
tmp 200 source3/lib/afs_settoken.c memcpy(p, &tmp, sizeof(uint32));
tmp 203 source3/lib/afs_settoken.c tmp = strlen(cell);
tmp 204 source3/lib/afs_settoken.c if (tmp >= MAXKTCREALMLEN) {
tmp 209 source3/lib/afs_settoken.c strncpy(p, cell, tmp);
tmp 210 source3/lib/afs_settoken.c p += tmp;
tmp 64 source3/lib/avahi.c AvahiWatch **tmp, *watch_ctx;
tmp 66 source3/lib/avahi.c tmp = talloc_realloc(ctx, ctx->watches, AvahiWatch *, num_watches + 1);
tmp 67 source3/lib/avahi.c if (tmp == NULL) {
tmp 70 source3/lib/avahi.c ctx->watches = tmp;
tmp 72 source3/lib/avahi.c watch_ctx = talloc(tmp, AvahiWatch);
tmp 157 source3/lib/avahi.c AvahiTimeout **tmp, *timeout_ctx;
tmp 159 source3/lib/avahi.c tmp = talloc_realloc(ctx, ctx->timeouts, AvahiTimeout *,
tmp 161 source3/lib/avahi.c if (tmp == NULL) {
tmp 164 source3/lib/avahi.c ctx->timeouts = tmp;
tmp 166 source3/lib/avahi.c timeout_ctx = talloc(tmp, AvahiTimeout);
tmp 67 source3/lib/ldb/include/dlinklist.h type tmp; \
tmp 68 source3/lib/ldb/include/dlinklist.h for (tmp = (list); tmp->next; tmp = tmp->next) ; \
tmp 69 source3/lib/ldb/include/dlinklist.h tmp->next = (p); \
tmp 71 source3/lib/ldb/include/dlinklist.h (p)->prev = tmp; \
tmp 90 source3/lib/ldb/include/dlinklist.h #define DLIST_DEMOTE(list, p, tmp) \
tmp 93 source3/lib/ldb/include/dlinklist.h DLIST_ADD_END(list, p, tmp); \
tmp 103 source3/lib/ldb/include/dlinklist.h type tmp; \
tmp 104 source3/lib/ldb/include/dlinklist.h for (tmp = (list1); tmp->next; tmp = tmp->next) ; \
tmp 105 source3/lib/ldb/include/dlinklist.h tmp->next = (list2); \
tmp 107 source3/lib/ldb/include/dlinklist.h (list2)->prev = tmp; \
tmp 288 source3/lib/ldb/ldb_sqlite3/ldb_sqlite3.c char *child, *tmp;
tmp 297 source3/lib/ldb/ldb_sqlite3/ldb_sqlite3.c tmp = parsetree_to_sql(module, mem_ctx, t->u.list.elements[0]);
tmp 298 source3/lib/ldb/ldb_sqlite3/ldb_sqlite3.c if (tmp == NULL) return NULL;
tmp 305 source3/lib/ldb/ldb_sqlite3/ldb_sqlite3.c tmp = talloc_asprintf_append(tmp, " INTERSECT %s ", child);
tmp 306 source3/lib/ldb/ldb_sqlite3/ldb_sqlite3.c if (tmp == NULL) return NULL;
tmp 309 source3/lib/ldb/ldb_sqlite3/ldb_sqlite3.c ret = talloc_asprintf(mem_ctx, "SELECT * FROM ( %s )\n", tmp);
tmp 315 source3/lib/ldb/ldb_sqlite3/ldb_sqlite3.c tmp = parsetree_to_sql(module, mem_ctx, t->u.list.elements[0]);
tmp 316 source3/lib/ldb/ldb_sqlite3/ldb_sqlite3.c if (tmp == NULL) return NULL;
tmp 323 source3/lib/ldb/ldb_sqlite3/ldb_sqlite3.c tmp = talloc_asprintf_append(tmp, " UNION %s ", child);
tmp 324 source3/lib/ldb/ldb_sqlite3/ldb_sqlite3.c if (tmp == NULL) return NULL;
tmp 327 source3/lib/ldb/ldb_sqlite3/ldb_sqlite3.c return talloc_asprintf(mem_ctx, "SELECT * FROM ( %s ) ", tmp);
tmp 89 source3/lib/ldb/nssldb/ldb-nss.c const char *tmp;
tmp 94 source3/lib/ldb/nssldb/ldb-nss.c tmp = ldb_msg_find_attr_as_string(msg, "uid", NULL);
tmp 95 source3/lib/ldb/nssldb/ldb-nss.c if (tmp == NULL) {
tmp 100 source3/lib/ldb/nssldb/ldb-nss.c len = strlen(tmp)+1;
tmp 106 source3/lib/ldb/nssldb/ldb-nss.c memcpy(&buffer[bufpos], tmp, len);
tmp 111 source3/lib/ldb/nssldb/ldb-nss.c tmp = ldb_msg_find_attr_as_string(msg, "userPassword", NULL);
tmp 112 source3/lib/ldb/nssldb/ldb-nss.c if (tmp == NULL) {
tmp 113 source3/lib/ldb/nssldb/ldb-nss.c tmp = "LDB";
tmp 115 source3/lib/ldb/nssldb/ldb-nss.c len = strlen(tmp)+1;
tmp 121 source3/lib/ldb/nssldb/ldb-nss.c memcpy(&buffer[bufpos], tmp, len);
tmp 141 source3/lib/ldb/nssldb/ldb-nss.c tmp = ldb_msg_find_attr_as_string(msg, "gecos", NULL);
tmp 142 source3/lib/ldb/nssldb/ldb-nss.c if (tmp == NULL) {
tmp 143 source3/lib/ldb/nssldb/ldb-nss.c tmp = "";
tmp 145 source3/lib/ldb/nssldb/ldb-nss.c len = strlen(tmp)+1;
tmp 151 source3/lib/ldb/nssldb/ldb-nss.c memcpy(&buffer[bufpos], tmp, len);
tmp 156 source3/lib/ldb/nssldb/ldb-nss.c tmp = ldb_msg_find_attr_as_string(msg, "homeDirectory", NULL);
tmp 157 source3/lib/ldb/nssldb/ldb-nss.c if (tmp == NULL) {
tmp 158 source3/lib/ldb/nssldb/ldb-nss.c tmp = "";
tmp 160 source3/lib/ldb/nssldb/ldb-nss.c len = strlen(tmp)+1;
tmp 166 source3/lib/ldb/nssldb/ldb-nss.c memcpy(&buffer[bufpos], tmp, len);
tmp 171 source3/lib/ldb/nssldb/ldb-nss.c tmp = ldb_msg_find_attr_as_string(msg, "loginShell", NULL);
tmp 172 source3/lib/ldb/nssldb/ldb-nss.c if (tmp == NULL) {
tmp 173 source3/lib/ldb/nssldb/ldb-nss.c tmp = "";
tmp 175 source3/lib/ldb/nssldb/ldb-nss.c len = strlen(tmp)+1;
tmp 181 source3/lib/ldb/nssldb/ldb-nss.c memcpy(&buffer[bufpos], tmp, len);
tmp 195 source3/lib/ldb/nssldb/ldb-nss.c const char *tmp;
tmp 204 source3/lib/ldb/nssldb/ldb-nss.c tmp = ldb_msg_find_attr_as_string(group, "cn", NULL);
tmp 205 source3/lib/ldb/nssldb/ldb-nss.c if (tmp == NULL) {
tmp 210 source3/lib/ldb/nssldb/ldb-nss.c len = strlen(tmp)+1;
tmp 216 source3/lib/ldb/nssldb/ldb-nss.c memcpy(&buffer[bufpos], tmp, len);
tmp 221 source3/lib/ldb/nssldb/ldb-nss.c tmp = ldb_msg_find_attr_as_string(group, "userPassword", NULL);
tmp 222 source3/lib/ldb/nssldb/ldb-nss.c if (tmp == NULL) {
tmp 223 source3/lib/ldb/nssldb/ldb-nss.c tmp = "LDB";
tmp 225 source3/lib/ldb/nssldb/ldb-nss.c len = strlen(tmp)+1;
tmp 231 source3/lib/ldb/nssldb/ldb-nss.c memcpy(&buffer[bufpos], tmp, len);
tmp 257 source3/lib/ldb/nssldb/ldb-nss.c tmp = ldb_msg_find_attr_as_string(members->msgs[i], "uid", NULL);
tmp 258 source3/lib/ldb/nssldb/ldb-nss.c if (tmp == NULL) {
tmp 263 source3/lib/ldb/nssldb/ldb-nss.c len = strlen(tmp)+1;
tmp 269 source3/lib/ldb/nssldb/ldb-nss.c memcpy(&buffer[bufpos], tmp, len);
tmp 223 source3/lib/packet.c size_t tmp;
tmp 226 source3/lib/packet.c tmp = len + blob.length;
tmp 227 source3/lib/packet.c if (tmp < len) {
tmp 232 source3/lib/packet.c len = tmp;
tmp 43 source3/lib/privileges.c fstring tmp, keystr;
tmp 57 source3/lib/privileges.c fstr_sprintf(keystr, "%s%s", PRIVPREFIX, sid_to_fstring(tmp, sid));
tmp 82 source3/lib/privileges.c fstring tmp, keystr;
tmp 98 source3/lib/privileges.c fstr_sprintf(keystr, "%s%s", PRIVPREFIX, sid_to_fstring(tmp, sid));
tmp 369 source3/lib/privileges.c fstring tmp, keystr;
tmp 385 source3/lib/privileges.c fstr_sprintf(keystr, "%s%s", PRIVPREFIX, sid_to_fstring(tmp, sid));
tmp 365 source3/lib/smbldap.c char *tmp;
tmp 367 source3/lib/smbldap.c if (!pull_utf8_talloc(mem_ctx, &tmp, values[i],
tmp 375 source3/lib/smbldap.c if (StrCaseCmp(tmp, result) < 0) {
tmp 377 source3/lib/smbldap.c result = tmp;
tmp 379 source3/lib/smbldap.c TALLOC_FREE(tmp);
tmp 1366 source3/lib/smbldap.c int tmp = 0, i, rc;
tmp 1431 source3/lib/smbldap.c ber_scanf(cookie_be,"{iO}", &tmp, &cookie_bv);
tmp 154 source3/lib/substitute.c char *tmp;
tmp 163 source3/lib/substitute.c tmp = SMB_STRDUP(name);
tmp 164 source3/lib/substitute.c if (!tmp) {
tmp 167 source3/lib/substitute.c trim_char(tmp, ' ', ' ');
tmp 168 source3/lib/substitute.c strlower_m(tmp);
tmp 170 source3/lib/substitute.c len = strlen(tmp);
tmp 173 source3/lib/substitute.c SAFE_FREE(tmp);
tmp 182 source3/lib/substitute.c if (tmp[len-1] == '$') {
tmp 189 source3/lib/substitute.c SAFE_FREE(tmp);
tmp 194 source3/lib/substitute.c alpha_strcpy(smb_user_name, tmp,
tmp 198 source3/lib/substitute.c SAFE_FREE(tmp);
tmp 314 source3/lib/substitute.c fstring tmp;
tmp 321 source3/lib/substitute.c sid_string = SMB_STRDUP( sid_to_fstring( tmp, &sid ) );
tmp 714 source3/lib/util.c uint8 *tmp;
tmp 716 source3/lib/util.c if (!(tmp = TALLOC_REALLOC_ARRAY(NULL, *outbuf, uint8, newlen))) {
tmp 720 source3/lib/util.c *outbuf = tmp;
tmp 722 source3/lib/util.c memcpy(tmp + smb_len(tmp) + 4, blob.data, blob.length);
tmp 723 source3/lib/util.c set_message_bcc((char *)tmp, smb_buflen(tmp) + blob.length);
tmp 3157 source3/lib/util.c struct policy_handle tmp;
tmp 3158 source3/lib/util.c ZERO_STRUCT(tmp);
tmp 3159 source3/lib/util.c return (memcmp(&tmp, hnd, sizeof(tmp)) != 0);
tmp 55 source3/lib/util_reg_api.c smb_ucs2_t *tmp;
tmp 63 source3/lib/util_reg_api.c if (!(tmp = SMB_MALLOC_ARRAY(smb_ucs2_t, 2))) {
tmp 67 source3/lib/util_reg_api.c tmp[0] = 0;
tmp 68 source3/lib/util_reg_api.c tmp[1] = 0;
tmp 78 source3/lib/util_reg_api.c if (!(tmp = SMB_MALLOC_ARRAY(smb_ucs2_t, num_ucs2+1))) {
tmp 83 source3/lib/util_reg_api.c memcpy((void *)tmp, (const void *)data, length);
tmp 84 source3/lib/util_reg_api.c tmp[num_ucs2] = 0;
tmp 89 source3/lib/util_reg_api.c SAFE_FREE(tmp);
tmp 94 source3/lib/util_reg_api.c if (!convert_string_talloc(value, CH_UTF16LE, CH_UNIX, tmp,
tmp 97 source3/lib/util_reg_api.c SAFE_FREE(tmp);
tmp 102 source3/lib/util_reg_api.c SAFE_FREE(tmp);
tmp 1587 source3/lib/util_sock.c DATA_BLOB tmp;
tmp 1594 source3/lib/util_sock.c &tmp)) {
tmp 1598 source3/lib/util_sock.c memcpy(&nc->ss, tmp.data, sizeof(nc->ss));
tmp 1599 source3/lib/util_sock.c nc->name = (const char *)tmp.data + sizeof(nc->ss);
tmp 1609 source3/lib/util_sock.c DATA_BLOB tmp;
tmp 1612 source3/lib/util_sock.c tmp = data_blob(NULL, sizeof(nc->ss) + namelen + 1);
tmp 1613 source3/lib/util_sock.c if (!tmp.data) {
tmp 1616 source3/lib/util_sock.c memcpy(tmp.data, &nc->ss, sizeof(nc->ss));
tmp 1617 source3/lib/util_sock.c memcpy(tmp.data+sizeof(nc->ss), nc->name, namelen+1);
tmp 1621 source3/lib/util_sock.c tmp);
tmp 1622 source3/lib/util_sock.c data_blob_free(&tmp);
tmp 1829 source3/lib/util_sock.c DATA_BLOB tmp;
tmp 1833 source3/lib/util_sock.c &tmp)) {
tmp 1834 source3/lib/util_sock.c SMB_ASSERT(tmp.length > 0);
tmp 1835 source3/lib/util_sock.c return (const char *)tmp.data;
tmp 1881 source3/lib/util_sock.c &tmp)) {
tmp 1882 source3/lib/util_sock.c tmp = data_blob_talloc(talloc_tos(), res->ai_canonname,
tmp 1888 source3/lib/util_sock.c return (const char *)tmp.data;
tmp 454 source3/lib/util_str.c smb_ucs2_t *tmp, *p;
tmp 458 source3/lib/util_str.c if (!push_ucs2_allocate(&tmp, s, &converted_size)) {
tmp 462 source3/lib/util_str.c for(p = tmp; *p != 0; p++) {
tmp 469 source3/lib/util_str.c SAFE_FREE(tmp);
tmp 479 source3/lib/util_str.c smb_ucs2_t *tmp, *p;
tmp 483 source3/lib/util_str.c if (!push_ucs2_allocate(&tmp, s, &converted_size)) {
tmp 487 source3/lib/util_str.c for(p = tmp; *p != 0; p++) {
tmp 494 source3/lib/util_str.c SAFE_FREE(tmp);
tmp 2463 source3/lib/util_str.c char **tmp;
tmp 2467 source3/lib/util_str.c tmp = TALLOC_REALLOC_ARRAY(mem_ctx, list, char *,
tmp 2469 source3/lib/util_str.c if (tmp == NULL) {
tmp 2476 source3/lib/util_str.c list = tmp;
tmp 2114 source3/libads/ldap.c struct GUID tmp;
tmp 2117 source3/libads/ldap.c smb_uuid_unpack(guid, &tmp);
tmp 2118 source3/libads/ldap.c printf("%s: %s\n", field, GUID_string(talloc_tos(), &tmp));
tmp 2130 source3/libads/ldap.c fstring tmp;
tmp 2132 source3/libads/ldap.c printf("%s: %s\n", field, sid_to_fstring(tmp, &sid));
tmp 84 source3/libgpo/gpext/registry.c uint16_t tmp;
tmp 86 source3/libgpo/gpext/registry.c if (!prs_uint16(desc, ps, depth, &tmp))
tmp 89 source3/libgpo/gpext/registry.c if (tmp != UCS2_CHAR(character))
tmp 142 source3/libgpo/gpo_reg.c const char *tmp = NULL;
tmp 148 source3/libgpo/gpo_reg.c tmp = talloc_asprintf(mem_ctx, "%s\\%s", reg_ctx->path, subkeyname);
tmp 149 source3/libgpo/gpo_reg.c W_ERROR_HAVE_NO_MEMORY(tmp);
tmp 151 source3/libgpo/gpo_reg.c return reg_open_path(mem_ctx, tmp, REG_KEY_READ,
tmp 809 source3/libgpo/gpo_util.c const char *tmp = NULL;
tmp 819 source3/libgpo/gpo_util.c tmp = talloc_asprintf(mem_ctx, "%s/%s/%s", filename,
tmp 821 source3/libgpo/gpo_util.c NT_STATUS_HAVE_NO_MEMORY(tmp);
tmp 823 source3/libgpo/gpo_util.c if (sys_stat(tmp, &sbuf) == 0) {
tmp 824 source3/libgpo/gpo_util.c *filename_out = tmp;
tmp 831 source3/libgpo/gpo_util.c tmp = talloc_asprintf(mem_ctx, "%s/%s/%s", filename,
tmp 833 source3/libgpo/gpo_util.c NT_STATUS_HAVE_NO_MEMORY(tmp);
tmp 835 source3/libgpo/gpo_util.c if (sys_stat(tmp, &sbuf) == 0) {
tmp 836 source3/libgpo/gpo_util.c *filename_out = tmp;
tmp 1073 source3/libsmb/async_smb.c char *tmp;
tmp 1098 source3/libsmb/async_smb.c tmp = TALLOC_REALLOC_ARRAY(cli, cli->evt_inbuf, char,
tmp 1100 source3/libsmb/async_smb.c if (tmp == NULL) {
tmp 1105 source3/libsmb/async_smb.c cli->evt_inbuf = tmp;
tmp 1234 source3/libsmb/cliconnect.c char *tmp = NULL;
tmp 1309 source3/libsmb/cliconnect.c tmp = talloc_asprintf_strupper_m(talloc_tos(), "\\\\%s\\%s",
tmp 1311 source3/libsmb/cliconnect.c if (tmp == NULL) {
tmp 1315 source3/libsmb/cliconnect.c bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), tmp, strlen(tmp)+1,
tmp 1317 source3/libsmb/cliconnect.c TALLOC_FREE(tmp);
tmp 1322 source3/libsmb/cliconnect.c tmp = talloc_strdup_upper(talloc_tos(), dev);
tmp 1323 source3/libsmb/cliconnect.c if (tmp == NULL) {
tmp 1327 source3/libsmb/cliconnect.c bytes = smb_bytes_push_str(bytes, false, tmp, strlen(tmp)+1, NULL);
tmp 1328 source3/libsmb/cliconnect.c TALLOC_FREE(tmp);
tmp 1705 source3/libsmb/cliconnect.c char *tmp;
tmp 1716 source3/libsmb/cliconnect.c tmp = name_mangle(talloc_tos(), cli->called.name,
tmp 1718 source3/libsmb/cliconnect.c if (tmp == NULL) {
tmp 1723 source3/libsmb/cliconnect.c memcpy(p, tmp, name_len(tmp));
tmp 1724 source3/libsmb/cliconnect.c len += name_len(tmp);
tmp 1725 source3/libsmb/cliconnect.c TALLOC_FREE(tmp);
tmp 1729 source3/libsmb/cliconnect.c tmp = name_mangle(talloc_tos(), cli->calling.name,
tmp 1731 source3/libsmb/cliconnect.c if (tmp == NULL) {
tmp 1736 source3/libsmb/cliconnect.c memcpy(p, tmp, name_len(tmp));
tmp 1737 source3/libsmb/cliconnect.c len += name_len(tmp);
tmp 1738 source3/libsmb/cliconnect.c TALLOC_FREE(tmp);
tmp 39 source3/libsmb/clidgram.c char tmp[4];
tmp 77 source3/libsmb/clidgram.c memcpy(tmp,ptr,4);
tmp 85 source3/libsmb/clidgram.c memcpy(ptr,tmp,4);
tmp 1686 source3/libsmb/clikrb5.c const char *tmp = NULL;
tmp 1713 source3/libsmb/clikrb5.c tmp = keytab_name_req;
tmp 1722 source3/libsmb/clikrb5.c tmp = talloc_asprintf(mem_ctx, "%s:%s", pragma, keytab_name_req);
tmp 1723 source3/libsmb/clikrb5.c if (!tmp) {
tmp 1741 source3/libsmb/clikrb5.c tmp = talloc_strdup(mem_ctx, keytab_string);
tmp 1742 source3/libsmb/clikrb5.c if (!tmp) {
tmp 1747 source3/libsmb/clikrb5.c if (strncmp(tmp, "ANY:", 4) == 0) {
tmp 1748 source3/libsmb/clikrb5.c tmp += 4;
tmp 1753 source3/libsmb/clikrb5.c while (next_token_talloc(mem_ctx, &tmp, &kt_str, ",")) {
tmp 1756 source3/libsmb/clikrb5.c tmp = kt_str;
tmp 1757 source3/libsmb/clikrb5.c tmp += 7;
tmp 1762 source3/libsmb/clikrb5.c tmp = kt_str;
tmp 1763 source3/libsmb/clikrb5.c tmp += 5;
tmp 1766 source3/libsmb/clikrb5.c if (tmp[0] == '/') {
tmp 1772 source3/libsmb/clikrb5.c if (tmp[0] != '/') {
tmp 1777 source3/libsmb/clikrb5.c tmp = talloc_asprintf(mem_ctx, "%s:%s", pragma, tmp);
tmp 1778 source3/libsmb/clikrb5.c if (!tmp) {
tmp 1792 source3/libsmb/clikrb5.c DEBUG(10,("smb_krb5_open_keytab: resolving: %s\n", tmp));
tmp 1793 source3/libsmb/clikrb5.c ret = krb5_kt_resolve(context, tmp, keytab);
tmp 847 source3/libsmb/clirap.c struct stream_struct *tmp;
tmp 850 source3/libsmb/clirap.c tmp = TALLOC_REALLOC_ARRAY(mem_ctx, streams,
tmp 854 source3/libsmb/clirap.c if (tmp == NULL) {
tmp 857 source3/libsmb/clirap.c streams = tmp;
tmp 1701 source3/libsmb/clirap2.c fstring tmp;
tmp 1728 source3/libsmb/clirap2.c if (pull_ascii(tmp, rdata, sizeof(tmp)-1, 16, STR_TERMINATE) == -1) {
tmp 1733 source3/libsmb/clirap2.c if (!(*servername = talloc_strdup(mem_ctx, tmp))) {
tmp 1859 source3/libsmb/clirap2.c char *tmp = NULL;
tmp 1870 source3/libsmb/clirap2.c tmp = upperbuf;
tmp 1871 source3/libsmb/clirap2.c PUTSTRINGF(p, tmp, RAP_USERNAME_LEN);
tmp 1875 source3/libsmb/clirap2.c tmp = upperbuf;
tmp 1876 source3/libsmb/clirap2.c PUTSTRINGF(p, tmp, RAP_MACHNAME_LEN);
tmp 49 source3/libsmb/credentials.c unsigned char zero[4], tmp[16];
tmp 65 source3/libsmb/credentials.c MD5Final(tmp, &md5);
tmp 66 source3/libsmb/credentials.c hmac_md5_update(tmp, sizeof(tmp), &ctx);
tmp 1407 source3/libsmb/libsmb_dir.c struct smbc_dir_list *tmp = list;
tmp 1409 source3/libsmb/libsmb_dir.c while (tmp) {
tmp 1411 source3/libsmb/libsmb_dir.c if (tmp->dirent == dirent)
tmp 1412 source3/libsmb/libsmb_dir.c return tmp;
tmp 1414 source3/libsmb/libsmb_dir.c tmp = tmp->next;
tmp 66 source3/libsmb/samlogon_cache.c fstring keystr, tmp;
tmp 82 source3/libsmb/samlogon_cache.c slprintf(keystr, sizeof(keystr), "%s", sid_to_fstring(tmp, &user_sid));
tmp 97 source3/libsmb/samlogon_cache.c fstring keystr, tmp;
tmp 120 source3/libsmb/samlogon_cache.c slprintf(keystr, sizeof(keystr), "%s", sid_to_fstring(tmp, &user_sid));
tmp 174 source3/libsmb/samlogon_cache.c fstring keystr, tmp;
tmp 186 source3/libsmb/samlogon_cache.c slprintf(keystr, sizeof(keystr), "%s", sid_to_fstring(tmp, user_sid));
tmp 469 source3/locking/locking.c static TDB_DATA locking_key(const struct file_id *id, struct file_id *tmp)
tmp 471 source3/locking/locking.c *tmp = *id;
tmp 472 source3/locking/locking.c return make_tdb_data((const uint8_t *)tmp, sizeof(*tmp));
tmp 842 source3/locking/locking.c struct file_id tmp;
tmp 843 source3/locking/locking.c TDB_DATA key = locking_key(&id, &tmp);
tmp 874 source3/locking/locking.c struct file_id tmp;
tmp 875 source3/locking/locking.c TDB_DATA key = locking_key(&id, &tmp);
tmp 329 source3/locking/posix.c struct lock_ref_count_key *tmp)
tmp 331 source3/locking/posix.c ZERO_STRUCTP(tmp);
tmp 332 source3/locking/posix.c tmp->id = fsp->file_id;
tmp 333 source3/locking/posix.c tmp->r = 'r';
tmp 334 source3/locking/posix.c return make_tdb_data((uint8_t *)tmp, sizeof(*tmp));
tmp 400 source3/locking/posix.c struct lock_ref_count_key tmp;
tmp 407 source3/locking/posix.c locking_ref_count_key_fsp(fsp, &tmp));
tmp 436 source3/locking/posix.c struct lock_ref_count_key tmp;
tmp 443 source3/locking/posix.c locking_ref_count_key_fsp(fsp, &tmp));
tmp 477 source3/locking/posix.c struct lock_ref_count_key tmp;
tmp 484 source3/locking/posix.c locking_ref_count_key_fsp(fsp, &tmp), &dbuf);
tmp 506 source3/locking/posix.c struct lock_ref_count_key tmp;
tmp 511 source3/locking/posix.c locking_ref_count_key_fsp(fsp, &tmp));
tmp 2584 source3/modules/getdate.c struct tm *tmp = localtime (&Start);
tmp 2589 source3/modules/getdate.c if (! tmp)
tmp 2593 source3/modules/getdate.c pc.year.value = tmp->tm_year + TM_YEAR_BASE;
tmp 2595 source3/modules/getdate.c pc.month = tmp->tm_mon + 1;
tmp 2596 source3/modules/getdate.c pc.day = tmp->tm_mday;
tmp 2597 source3/modules/getdate.c pc.hour = tmp->tm_hour;
tmp 2598 source3/modules/getdate.c pc.minutes = tmp->tm_min;
tmp 2599 source3/modules/getdate.c pc.seconds = tmp->tm_sec;
tmp 2600 source3/modules/getdate.c tm.tm_isdst = tmp->tm_isdst;
tmp 2617 source3/modules/getdate.c pc.local_time_zone_table[0].name = tmp->tm_zone;
tmp 2619 source3/modules/getdate.c pc.local_time_zone_table[0].value = tmp->tm_isdst;
tmp 883 source3/modules/getdate.y struct tm *tmp = localtime (&Start);
tmp 888 source3/modules/getdate.y if (! tmp)
tmp 892 source3/modules/getdate.y pc.year.value = tmp->tm_year + TM_YEAR_BASE;
tmp 894 source3/modules/getdate.y pc.month = tmp->tm_mon + 1;
tmp 895 source3/modules/getdate.y pc.day = tmp->tm_mday;
tmp 896 source3/modules/getdate.y pc.hour = tmp->tm_hour;
tmp 897 source3/modules/getdate.y pc.minutes = tmp->tm_min;
tmp 898 source3/modules/getdate.y pc.seconds = tmp->tm_sec;
tmp 899 source3/modules/getdate.y tm.tm_isdst = tmp->tm_isdst;
tmp 916 source3/modules/getdate.y pc.local_time_zone_table[0].name = tmp->tm_zone;
tmp 918 source3/modules/getdate.y pc.local_time_zone_table[0].value = tmp->tm_isdst;
tmp 217 source3/modules/onefs_shadow_copy.c struct osc_snapshot *tmp;
tmp 220 source3/modules/onefs_shadow_copy.c tmp = isp;
tmp 222 source3/modules/onefs_shadow_copy.c osc_snapshot_destroy(tmp);
tmp 394 source3/modules/onefs_shadow_copy.c struct osc_snapshot *tmp;
tmp 397 source3/modules/onefs_shadow_copy.c tmp = *(void **)oscp->osc_set;
tmp 398 source3/modules/onefs_shadow_copy.c tdelete(tmp, &oscp->osc_set, osc_snapshot_compare);
tmp 399 source3/modules/onefs_shadow_copy.c osc_snapshot_destroy_list(tmp);
tmp 532 source3/modules/onefs_shadow_copy.c struct tm *tmp;
tmp 544 source3/modules/onefs_shadow_copy.c tmp = gmtime(&tsp->tv_sec);
tmp 545 source3/modules/onefs_shadow_copy.c if (tmp == NULL) {
tmp 552 source3/modules/onefs_shadow_copy.c tmp->tm_year + 1900,
tmp 553 source3/modules/onefs_shadow_copy.c tmp->tm_mon + 1,
tmp 554 source3/modules/onefs_shadow_copy.c tmp->tm_mday,
tmp 555 source3/modules/onefs_shadow_copy.c tmp->tm_hour,
tmp 556 source3/modules/onefs_shadow_copy.c tmp->tm_min,
tmp 557 source3/modules/onefs_shadow_copy.c tmp->tm_sec);
tmp 494 source3/modules/onefs_streams.c struct stream_struct *tmp;
tmp 496 source3/modules/onefs_streams.c tmp = TALLOC_REALLOC_ARRAY(mem_ctx, *streams, struct stream_struct,
tmp 498 source3/modules/onefs_streams.c if (tmp == NULL) {
tmp 502 source3/modules/onefs_streams.c tmp[*num_streams].name = talloc_asprintf(mem_ctx, ":%s:%s", name,
tmp 504 source3/modules/onefs_streams.c if (tmp[*num_streams].name == NULL) {
tmp 508 source3/modules/onefs_streams.c tmp[*num_streams].size = size;
tmp 509 source3/modules/onefs_streams.c tmp[*num_streams].alloc_size = alloc_size;
tmp 511 source3/modules/onefs_streams.c *streams = tmp;
tmp 296 source3/modules/perfcount_onefs.c struct onefs_op_counter *tmp;
tmp 306 source3/modules/perfcount_onefs.c for (tmp = ctxt->ops_chain; tmp; tmp = tmp->next) {
tmp 307 source3/modules/perfcount_onefs.c tmp->iod.out_bytes = ctxt->iod.out_bytes;
tmp 308 source3/modules/perfcount_onefs.c ISP_OP_END(&tmp->iod);
tmp 311 source3/modules/perfcount_onefs.c onefs_stat_debug(&tmp->iod),
tmp 312 source3/modules/perfcount_onefs.c tmp->iod.in_bytes, tmp->iod.out_bytes));
tmp 314 source3/modules/perfcount_onefs.c SAFE_FREE(tmp->prev);
tmp 64 source3/modules/perfcount_test.c struct perfcount_test_counter *tmp;
tmp 80 source3/modules/perfcount_test.c tmp = ptc->next;
tmp 83 source3/modules/perfcount_test.c ptc = tmp;
tmp 91 source3/modules/perfcount_test.c tmp = ptc->next;
tmp 95 source3/modules/perfcount_test.c ptc = tmp;
tmp 84 source3/modules/vfs_acl_xattr.c uint8_t *tmp;
tmp 92 source3/modules/vfs_acl_xattr.c tmp = TALLOC_REALLOC_ARRAY(ctx, val, uint8_t, size);
tmp 93 source3/modules/vfs_acl_xattr.c if (tmp == NULL) {
tmp 97 source3/modules/vfs_acl_xattr.c val = tmp;
tmp 794 source3/modules/vfs_afsacl.c char *tmp;
tmp 795 source3/modules/vfs_afsacl.c tmp = talloc_asprintf(talloc_tos(), "%s%s%s",
tmp 798 source3/modules/vfs_afsacl.c if (tmp == NULL) {
tmp 801 source3/modules/vfs_afsacl.c strlower_m(tmp);
tmp 802 source3/modules/vfs_afsacl.c name = tmp;
tmp 125 source3/modules/vfs_streams_depot.c char *tmp;
tmp 135 source3/modules/vfs_streams_depot.c tmp = talloc_asprintf(talloc_tos(), "%s/.streams", handle->conn->connectpath);
tmp 137 source3/modules/vfs_streams_depot.c if (tmp == NULL) {
tmp 144 source3/modules/vfs_streams_depot.c tmp);
tmp 228 source3/modules/vfs_streams_depot.c tmp = talloc_asprintf(result, "%s/%2.2X", rootdir, first);
tmp 229 source3/modules/vfs_streams_depot.c if (tmp == NULL) {
tmp 234 source3/modules/vfs_streams_depot.c if ((SMB_VFS_NEXT_MKDIR(handle, tmp, 0755) != 0)
tmp 239 source3/modules/vfs_streams_depot.c TALLOC_FREE(tmp);
tmp 241 source3/modules/vfs_streams_depot.c tmp = talloc_asprintf(result, "%s/%2.2X/%2.2X", rootdir, first,
tmp 243 source3/modules/vfs_streams_depot.c if (tmp == NULL) {
tmp 248 source3/modules/vfs_streams_depot.c if ((SMB_VFS_NEXT_MKDIR(handle, tmp, 0755) != 0)
tmp 253 source3/modules/vfs_streams_depot.c TALLOC_FREE(tmp);
tmp 602 source3/modules/vfs_streams_depot.c struct stream_struct *tmp;
tmp 604 source3/modules/vfs_streams_depot.c tmp = TALLOC_REALLOC_ARRAY(mem_ctx, *streams, struct stream_struct,
tmp 606 source3/modules/vfs_streams_depot.c if (tmp == NULL) {
tmp 610 source3/modules/vfs_streams_depot.c tmp[*num_streams].name = talloc_strdup(tmp, name);
tmp 611 source3/modules/vfs_streams_depot.c if (tmp[*num_streams].name == NULL) {
tmp 615 source3/modules/vfs_streams_depot.c tmp[*num_streams].size = size;
tmp 616 source3/modules/vfs_streams_depot.c tmp[*num_streams].alloc_size = alloc_size;
tmp 618 source3/modules/vfs_streams_depot.c *streams = tmp;
tmp 661 source3/modules/vfs_streams_xattr.c struct stream_struct *tmp;
tmp 663 source3/modules/vfs_streams_xattr.c tmp = TALLOC_REALLOC_ARRAY(mem_ctx, *streams, struct stream_struct,
tmp 665 source3/modules/vfs_streams_xattr.c if (tmp == NULL) {
tmp 669 source3/modules/vfs_streams_xattr.c tmp[*num_streams].name = talloc_strdup(tmp, name);
tmp 670 source3/modules/vfs_streams_xattr.c if (tmp[*num_streams].name == NULL) {
tmp 674 source3/modules/vfs_streams_xattr.c tmp[*num_streams].size = size;
tmp 675 source3/modules/vfs_streams_xattr.c tmp[*num_streams].alloc_size = alloc_size;
tmp 677 source3/modules/vfs_streams_xattr.c *streams = tmp;
tmp 807 source3/modules/vfs_streams_xattr.c uint8 *tmp;
tmp 809 source3/modules/vfs_streams_xattr.c tmp = TALLOC_REALLOC_ARRAY(talloc_tos(), ea.value.data, uint8,
tmp 812 source3/modules/vfs_streams_xattr.c if (tmp == NULL) {
tmp 817 source3/modules/vfs_streams_xattr.c ea.value.data = tmp;
tmp 885 source3/modules/vfs_streams_xattr.c uint8 *tmp;
tmp 909 source3/modules/vfs_streams_xattr.c tmp = TALLOC_REALLOC_ARRAY(talloc_tos(), ea.value.data, uint8,
tmp 912 source3/modules/vfs_streams_xattr.c if (tmp == NULL) {
tmp 920 source3/modules/vfs_streams_xattr.c memset(&tmp[ea.value.length], '\0',
tmp 924 source3/modules/vfs_streams_xattr.c ea.value.data = tmp;
tmp 298 source3/modules/vfs_xattr_tdb.c struct xattr_EA *tmp;
tmp 306 source3/modules/vfs_xattr_tdb.c tmp = TALLOC_REALLOC_ARRAY(
tmp 310 source3/modules/vfs_xattr_tdb.c if (tmp == NULL) {
tmp 317 source3/modules/vfs_xattr_tdb.c attribs->eas = tmp;
tmp 409 source3/modules/vfs_xattr_tdb.c size_t tmp;
tmp 414 source3/modules/vfs_xattr_tdb.c tmp = strlen(attribs->eas[i].name);
tmp 420 source3/modules/vfs_xattr_tdb.c if (len + (tmp+1) < len) {
tmp 429 source3/modules/vfs_xattr_tdb.c len += (tmp + 1);
tmp 1886 source3/nmbd/nmbd_packets.c char tmp[4];
tmp 1913 source3/nmbd/nmbd_packets.c memcpy(tmp,ptr,4);
tmp 1921 source3/nmbd/nmbd_packets.c memcpy(ptr,tmp,4);
tmp 281 source3/nmbd/nmbd_serverlistdb.c fstring tmp;
tmp 283 source3/nmbd/nmbd_serverlistdb.c slprintf(tmp,sizeof(tmp)-1, "\"%s\"", name);
tmp 284 source3/nmbd/nmbd_serverlistdb.c x_fprintf(fp, "%-25s ", tmp);
tmp 286 source3/nmbd/nmbd_serverlistdb.c slprintf(tmp, sizeof(tmp)-1, "\"%s\" ", local_master_browser_name);
tmp 287 source3/nmbd/nmbd_serverlistdb.c x_fprintf(fp, "%-30s", tmp);
tmp 38 source3/passdb/lookup_sid.c const char *tmp;
tmp 152 source3/passdb/lookup_sid.c tmp = name; name = domain; domain = tmp;
tmp 169 source3/passdb/lookup_sid.c tmp = name; name = domain; domain = tmp;
tmp 185 source3/passdb/lookup_sid.c tmp = name; name = domain; domain = tmp;
tmp 197 source3/passdb/lookup_sid.c tmp = name; name = domain; domain = tmp;
tmp 256 source3/passdb/lookup_sid.c tmp = name; name = domain; domain = tmp;
tmp 363 source3/passdb/lookup_sid.c char *tmp;
tmp 367 source3/passdb/lookup_sid.c tmp = talloc_strdup(mem_ctx, full_name);
tmp 368 source3/passdb/lookup_sid.c if (!tmp) {
tmp 371 source3/passdb/lookup_sid.c tmp[p - full_name] = '\\';
tmp 372 source3/passdb/lookup_sid.c full_name = tmp;
tmp 607 source3/passdb/lookup_sid.c const char *tmp;
tmp 620 source3/passdb/lookup_sid.c if (sid_check_is_wellknown_domain(sid, &tmp)) {
tmp 621 source3/passdb/lookup_sid.c *name = talloc_strdup(mem_ctx, tmp);
tmp 664 source3/passdb/lookup_sid.c if (winbind_lookup_sid(mem_ctx, sid, &tmp, NULL, &type) &&
tmp 666 source3/passdb/lookup_sid.c *name = tmp;
tmp 559 source3/passdb/pdb_interface.c fstring tmp;
tmp 587 source3/passdb/pdb_interface.c return add_initial_entry(grp->gr_gid, sid_to_fstring(tmp, &group_sid),
tmp 2506 source3/passdb/pdb_ldap.c fstring tmp;
tmp 2511 source3/passdb/pdb_ldap.c sid_to_fstring(tmp, &sid)) < 0) {
tmp 3476 source3/passdb/pdb_ldap.c fstring tmp;
tmp 3496 source3/passdb/pdb_ldap.c LDAP_OBJ_GROUPMAP, sid_to_fstring(tmp, alias),
tmp 3544 source3/passdb/pdb_ldap.c sid_to_fstring(tmp, member));
tmp 3597 source3/passdb/pdb_ldap.c fstring tmp;
tmp 3618 source3/passdb/pdb_ldap.c LDAP_OBJ_GROUPMAP, sid_to_fstring(tmp, alias),
tmp 4691 source3/passdb/pdb_ldap.c fstring tmp;
tmp 4707 source3/passdb/pdb_ldap.c type, sid_to_fstring(tmp, sid));
tmp 4795 source3/passdb/pdb_ldap.c uint32 tmp = (uint32)strtoul(value, NULL, 10);
tmp 4796 source3/passdb/pdb_ldap.c nextRid = MAX(nextRid, tmp);
tmp 4802 source3/passdb/pdb_ldap.c uint32 tmp = (uint32)strtoul(value, NULL, 10);
tmp 4803 source3/passdb/pdb_ldap.c nextRid = MAX(nextRid, tmp);
tmp 4809 source3/passdb/pdb_ldap.c uint32 tmp = (uint32)strtoul(value, NULL, 10);
tmp 4810 source3/passdb/pdb_ldap.c nextRid = MAX(nextRid, tmp);
tmp 5028 source3/passdb/pdb_ldap.c char *tmp;
tmp 5038 source3/passdb/pdb_ldap.c tmp = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "sambaSID", tmp_ctx);
tmp 5039 source3/passdb/pdb_ldap.c if (tmp) {
tmp 5350 source3/passdb/pdb_ldap.c char *tmp;
tmp 5360 source3/passdb/pdb_ldap.c tmp = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "sambaSID", tmp_ctx);
tmp 5361 source3/passdb/pdb_ldap.c if (tmp) {
tmp 5367 source3/passdb/pdb_ldap.c tmp = smbldap_talloc_single_attribute(priv2ld(ldap_state), entry, "gidNumber", tmp_ctx);
tmp 5368 source3/passdb/pdb_ldap.c if (!tmp) {
tmp 5373 source3/passdb/pdb_ldap.c gid = strtoul(tmp, NULL, 10);
tmp 800 source3/printing/lpq_parse.c fstring tmp;
tmp 803 source3/printing/lpq_parse.c fstrcpy(tmp,p+1);
tmp 804 source3/printing/lpq_parse.c fstrcpy(tok[6],tmp);
tmp 77 source3/printing/print_svid.c char *name, *tmp;
tmp 81 source3/printing/print_svid.c if (((tmp = strchr_m(buf, ' ')) == NULL) ||
tmp 82 source3/printing/print_svid.c ((tmp = strchr_m(++tmp, ' ')) == NULL))
tmp 89 source3/printing/print_svid.c if(!strncmp("for ", ++tmp, 4)) {
tmp 90 source3/printing/print_svid.c tmp=strchr_m(tmp, ' ');
tmp 91 source3/printing/print_svid.c tmp++;
tmp 96 source3/printing/print_svid.c while(*tmp == ' ')
tmp 97 source3/printing/print_svid.c ++tmp;
tmp 103 source3/printing/print_svid.c if(!strncmp("remote to", tmp, 9))
tmp 106 source3/printing/print_svid.c name = tmp;
tmp 109 source3/printing/print_svid.c if ((tmp = strchr_m(name, ':')) != NULL)
tmp 110 source3/printing/print_svid.c *tmp = '\0';
tmp 267 source3/printing/printing.c static TDB_DATA print_key(uint32 jobid, uint32 *tmp)
tmp 271 source3/printing/printing.c SIVAL(tmp, 0, jobid);
tmp 272 source3/printing/printing.c ret.dptr = (uint8 *)tmp;
tmp 273 source3/printing/printing.c ret.dsize = sizeof(*tmp);
tmp 335 source3/printing/printing.c uint32_t tmp;
tmp 346 source3/printing/printing.c ret = tdb_fetch(pdb->tdb, print_key(jobid, &tmp));
tmp 521 source3/printing/printing.c uint32_t tmp;
tmp 534 source3/printing/printing.c old_data = tdb_fetch(pdb->tdb, print_key(jobid, &tmp));
tmp 575 source3/printing/printing.c ret = (tdb_store(pdb->tdb, print_key(jobid, &tmp), new_data,
tmp 612 source3/printing/printing.c uint32_t tmp;
tmp 640 source3/printing/printing.c tdb_delete(pdb->tdb, print_key(jobid, &tmp));
tmp 1800 source3/printing/printing.c uint32_t tmp;
tmp 1804 source3/printing/printing.c ret = tdb_exists(pdb->tdb, print_key(jobid, &tmp));
tmp 2353 source3/printing/printing.c uint32_t tmp;
tmp 2357 source3/printing/printing.c if (tdb_store(pdb->tdb, print_key(jobid, &tmp), dum,
tmp 266 source3/registry/reg_api.c struct registry_key *tmp;
tmp 275 source3/registry/reg_api.c KEY_ENUMERATE_SUB_KEYS, &tmp);
tmp 285 source3/registry/reg_api.c direct_parent = tmp;
tmp 480 source3/registry/reg_api.c struct registry_key *tmp;
tmp 486 source3/registry/reg_api.c KEY_ENUMERATE_SUB_KEYS, &tmp, &action);
tmp 495 source3/registry/reg_api.c key = tmp;
tmp 748 source3/rpc_server/srv_lsa_nt.c fstring tmp;
tmp 757 source3/rpc_server/srv_lsa_nt.c sid_to_fstring(tmp,
tmp 2223 source3/rpc_server/srv_pipe.c PIPE_RPC_FNS *tmp = list;
tmp 2226 source3/rpc_server/srv_pipe.c while (tmp) {
tmp 2227 source3/rpc_server/srv_pipe.c tmp2 = tmp->next;
tmp 2228 source3/rpc_server/srv_pipe.c SAFE_FREE(tmp);
tmp 2229 source3/rpc_server/srv_pipe.c tmp = tmp2;
tmp 2117 source3/rpc_server/srv_samr_nt.c uint32_t tmp;
tmp 2170 source3/rpc_server/srv_samr_nt.c pdb_get_account_policy(AP_MIN_PASSWORD_LEN, &tmp);
tmp 2171 source3/rpc_server/srv_samr_nt.c dominfo->min_password_length = tmp;
tmp 2173 source3/rpc_server/srv_samr_nt.c pdb_get_account_policy(AP_PASSWORD_HISTORY, &tmp);
tmp 2174 source3/rpc_server/srv_samr_nt.c dominfo->password_history_length = tmp;
tmp 406 source3/rpcclient/cmd_eventlog.c const char *tmp;
tmp 418 source3/rpcclient/cmd_eventlog.c tmp = talloc_asprintf(mem_ctx, "\\??\\%s", argv[2]);
tmp 419 source3/rpcclient/cmd_eventlog.c if (!tmp) {
tmp 424 source3/rpcclient/cmd_eventlog.c init_lsa_String(&backup_filename, tmp);
tmp 629 source3/rpcclient/cmd_netlogon.c uint32_t tmp;
tmp 643 source3/rpcclient/cmd_netlogon.c tmp = atoi(argv[2]);
tmp 645 source3/rpcclient/cmd_netlogon.c sequence_num = tmp & 0xffff;
tmp 201 source3/rpcclient/rpcclient.c struct cmd_list *tmp;
tmp 214 source3/rpcclient/rpcclient.c for (tmp = cmd_list; tmp; tmp = tmp->next)
tmp 216 source3/rpcclient/rpcclient.c tmp_set = tmp->cmd_set;
tmp 246 source3/rpcclient/rpcclient.c struct cmd_list *tmp;
tmp 259 source3/rpcclient/rpcclient.c for (tmp = cmd_list; tmp; tmp = tmp->next) {
tmp 261 source3/rpcclient/rpcclient.c tmp_set = tmp->cmd_set;
tmp 284 source3/rpcclient/rpcclient.c for (tmp = cmd_list; tmp; tmp = tmp->next) {
tmp 286 source3/rpcclient/rpcclient.c tmp_set = tmp->cmd_set;
tmp 329 source3/rpcclient/rpcclient.c struct cmd_list *tmp;
tmp 333 source3/rpcclient/rpcclient.c for (tmp = cmd_list; tmp; tmp = tmp->next) {
tmp 336 source3/rpcclient/rpcclient.c for (tmp_set = tmp->cmd_set; tmp_set->name; tmp_set++) {
tmp 420 source3/rpcclient/rpcclient.c struct cmd_list *tmp;
tmp 430 source3/rpcclient/rpcclient.c for (tmp = cmd_list; tmp; tmp = tmp->next) {
tmp 434 source3/rpcclient/rpcclient.c for (tmp_set = tmp->cmd_set; tmp_set->name; tmp_set++) {
tmp 546 source3/smbd/dosmode.c mode_t tmp;
tmp 645 source3/smbd/dosmode.c if ((tmp = st->st_mode & (S_IRUSR|S_IRGRP|S_IROTH))) {
tmp 647 source3/smbd/dosmode.c unixmode |= tmp;
tmp 236 source3/smbd/filename.c char *tmp = talloc_strdup(ctx, stream);
tmp 237 source3/smbd/filename.c if (tmp == NULL) {
tmp 242 source3/smbd/filename.c stream = tmp;
tmp 542 source3/smbd/filename.c char *tmp;
tmp 546 source3/smbd/filename.c tmp = talloc_asprintf(ctx,
tmp 552 source3/smbd/filename.c tmp = unmangled;
tmp 554 source3/smbd/filename.c if (tmp == NULL) {
tmp 559 source3/smbd/filename.c name = tmp;
tmp 574 source3/smbd/filename.c char *tmp;
tmp 578 source3/smbd/filename.c tmp = talloc_asprintf(ctx,
tmp 583 source3/smbd/filename.c tmp = talloc_asprintf(ctx,
tmp 587 source3/smbd/filename.c if (tmp == NULL) {
tmp 592 source3/smbd/filename.c name = tmp;
tmp 597 source3/smbd/filename.c char *tmp;
tmp 601 source3/smbd/filename.c tmp = talloc_asprintf(ctx,
tmp 605 source3/smbd/filename.c tmp = talloc_strdup(ctx,
tmp 608 source3/smbd/filename.c if (tmp == NULL) {
tmp 613 source3/smbd/filename.c name = tmp;
tmp 660 source3/smbd/filename.c char *tmp = talloc_asprintf(ctx,
tmp 662 source3/smbd/filename.c if (!tmp) {
tmp 667 source3/smbd/filename.c dirpath = tmp;
tmp 712 source3/smbd/filename.c char *tmp = NULL;
tmp 715 source3/smbd/filename.c pst, &tmp);
tmp 720 source3/smbd/filename.c DEBUG(10, ("build_stream_path returned %s\n", tmp));
tmp 723 source3/smbd/filename.c name = tmp;
tmp 3666 source3/smbd/lanman.c char *tmp;
tmp 3671 source3/smbd/lanman.c tmp = talloc_strdup(ctx, "\\\\%L");
tmp 3672 source3/smbd/lanman.c if (!tmp) {
tmp 3675 source3/smbd/lanman.c tmp = talloc_sub_basic(ctx,
tmp 3678 source3/smbd/lanman.c tmp);
tmp 3679 source3/smbd/lanman.c if (!tmp) {
tmp 3684 source3/smbd/lanman.c tmp,
tmp 237 source3/smbd/message.c char *tmp;
tmp 260 source3/smbd/message.c tmp = TALLOC_REALLOC_ARRAY(smbd_msg_state, smbd_msg_state->msg,
tmp 263 source3/smbd/message.c if (tmp == NULL) {
tmp 269 source3/smbd/message.c smbd_msg_state->msg = tmp;
tmp 842 source3/smbd/msdfs.c char *tmp;
tmp 865 source3/smbd/msdfs.c if (!(tmp = talloc_strdup(ctx, lp_msdfs_proxy(snum)))) {
tmp 870 source3/smbd/msdfs.c trim_string(tmp, "\\", 0);
tmp 872 source3/smbd/msdfs.c ref->alternate_path = talloc_asprintf(ctx, "\\%s", tmp);
tmp 873 source3/smbd/msdfs.c TALLOC_FREE(tmp);
tmp 543 source3/smbd/negprot.c char **tmp;
tmp 545 source3/smbd/negprot.c tmp = TALLOC_REALLOC_ARRAY(talloc_tos(), cliprotos, char *,
tmp 547 source3/smbd/negprot.c if (tmp == NULL) {
tmp 555 source3/smbd/negprot.c cliprotos = tmp;
tmp 359 source3/smbd/notify.c char *tmp;
tmp 411 source3/smbd/notify.c if (!(tmp = talloc_strdup(changes, name))) {
tmp 416 source3/smbd/notify.c string_replace(tmp, '/', '\\');
tmp 417 source3/smbd/notify.c change->name = tmp;
tmp 242 source3/smbd/password.c fstring tmp;
tmp 254 source3/smbd/password.c alpha_strcpy(tmp, smb_name, ". _-$", sizeof(tmp));
tmp 257 source3/smbd/password.c vuser->server_info, tmp);
tmp 331 source3/smbd/password.c char *tmp;
tmp 354 source3/smbd/password.c if (asprintf(&tmp, "%s %s", session_userlist, pw->pw_name) == -1) {
tmp 360 source3/smbd/password.c session_userlist = tmp;
tmp 230 source3/smbd/server.c struct child_pid *tmp = child;
tmp 232 source3/smbd/server.c SAFE_FREE(tmp);
tmp 65 source3/smbd/sesssetup.c int result, tmp;
tmp 69 source3/smbd/sesssetup.c tmp = message_push_string(outbuf, "Unix", STR_TERMINATE);
tmp 71 source3/smbd/sesssetup.c if (tmp == -1) return -1;
tmp 72 source3/smbd/sesssetup.c result += tmp;
tmp 75 source3/smbd/sesssetup.c tmp = message_push_string(outbuf, lanman, STR_TERMINATE);
tmp 79 source3/smbd/sesssetup.c tmp = message_push_string(outbuf, "Samba", STR_TERMINATE);
tmp 82 source3/smbd/sesssetup.c if (tmp == -1) return -1;
tmp 83 source3/smbd/sesssetup.c result += tmp;
tmp 85 source3/smbd/sesssetup.c tmp = message_push_string(outbuf, lp_workgroup(), STR_TERMINATE);
tmp 87 source3/smbd/sesssetup.c if (tmp == -1) return -1;
tmp 88 source3/smbd/sesssetup.c result += tmp;
tmp 1148 source3/smbd/sesssetup.c char *tmp;
tmp 1189 source3/smbd/sesssetup.c p2 += srvstr_pull_req_talloc(talloc_tos(), req, &tmp, p2,
tmp 1191 source3/smbd/sesssetup.c native_os = tmp ? tmp : "";
tmp 1193 source3/smbd/sesssetup.c p2 += srvstr_pull_req_talloc(talloc_tos(), req, &tmp, p2,
tmp 1195 source3/smbd/sesssetup.c native_lanman = tmp ? tmp : "";
tmp 1197 source3/smbd/sesssetup.c p2 += srvstr_pull_req_talloc(talloc_tos(), req, &tmp, p2,
tmp 1199 source3/smbd/sesssetup.c primary_domain = tmp ? tmp : "";
tmp 1383 source3/smbd/sesssetup.c char *tmp;
tmp 1454 source3/smbd/sesssetup.c srvstr_pull_req_talloc(talloc_tos(), req, &tmp,
tmp 1456 source3/smbd/sesssetup.c user = tmp ? tmp : "";
tmp 1573 source3/smbd/sesssetup.c p += srvstr_pull_req_talloc(talloc_tos(), req, &tmp, p,
tmp 1575 source3/smbd/sesssetup.c user = tmp ? tmp : "";
tmp 1577 source3/smbd/sesssetup.c p += srvstr_pull_req_talloc(talloc_tos(), req, &tmp, p,
tmp 1579 source3/smbd/sesssetup.c domain = tmp ? tmp : "";
tmp 1581 source3/smbd/sesssetup.c p += srvstr_pull_req_talloc(talloc_tos(), req, &tmp, p,
tmp 1583 source3/smbd/sesssetup.c native_os = tmp ? tmp : "";
tmp 1585 source3/smbd/sesssetup.c p += srvstr_pull_req_talloc(talloc_tos(), req, &tmp, p,
tmp 1587 source3/smbd/sesssetup.c native_lanman = tmp ? tmp : "";
tmp 1598 source3/smbd/sesssetup.c p += srvstr_pull_req_talloc(talloc_tos(), req, &tmp, p,
tmp 1600 source3/smbd/sesssetup.c primary_domain = tmp ? tmp : "";
tmp 49 source3/smbd/srvstr.c uint8 *tmp;
tmp 59 source3/smbd/srvstr.c if (!(tmp = TALLOC_REALLOC_ARRAY(NULL, *outbuf, uint8,
tmp 65 source3/smbd/srvstr.c result = srvstr_push((char *)tmp, SVAL(tmp, smb_flg2),
tmp 66 source3/smbd/srvstr.c tmp + buf_size, str, grow_size, flags);
tmp 72 source3/smbd/srvstr.c set_message_bcc((char *)tmp, smb_buflen(tmp) + result);
tmp 74 source3/smbd/srvstr.c *outbuf = tmp;
tmp 152 source3/smbd/trans2.c char **names, **tmp;
tmp 231 source3/smbd/trans2.c tmp = TALLOC_REALLOC_ARRAY(mem_ctx, names, char *, num_names);
tmp 232 source3/smbd/trans2.c if (tmp == NULL) {
tmp 238 source3/smbd/trans2.c names = tmp;
tmp 131 source3/torture/vfstest.c struct cmd_list *tmp;
tmp 143 source3/torture/vfstest.c for (tmp = cmd_list; tmp; tmp = tmp->next) {
tmp 145 source3/torture/vfstest.c tmp_set = tmp->cmd_set;
tmp 168 source3/torture/vfstest.c for (tmp = cmd_list; tmp; tmp = tmp->next) {
tmp 170 source3/torture/vfstest.c tmp_set = tmp->cmd_set;
tmp 212 source3/utils/log2pcaphex.c int tmp; long i;
tmp 225 source3/utils/log2pcaphex.c assert(fscanf(in, " smb_com=0x%x\n", &tmp)); buffer[smb_com] = tmp; line_num++;
tmp 226 source3/utils/log2pcaphex.c assert(fscanf(in, " smb_rcls=%d\n", &tmp)); buffer[smb_rcls] = tmp; line_num++;
tmp 227 source3/utils/log2pcaphex.c assert(fscanf(in, " smb_reh=%d\n", &tmp)); buffer[smb_reh] = tmp; line_num++;
tmp 228 source3/utils/log2pcaphex.c assert(fscanf(in, " smb_err=%d\n", &tmp)); memcpy(buffer+smb_err, &tmp, 2); line_num++;
tmp 229 source3/utils/log2pcaphex.c assert(fscanf(in, " smb_flg=%d\n", &tmp)); buffer[smb_flg] = tmp; line_num++;
tmp 230 source3/utils/log2pcaphex.c assert(fscanf(in, " smb_flg2=%d\n", &tmp)); memcpy(buffer+smb_flg2, &tmp, 2); line_num++;
tmp 231 source3/utils/log2pcaphex.c assert(fscanf(in, " smb_tid=%d\n", &tmp)); memcpy(buffer+smb_tid, &tmp, 2); line_num++;
tmp 232 source3/utils/log2pcaphex.c assert(fscanf(in, " smb_pid=%d\n", &tmp)); memcpy(buffer+smb_pid, &tmp, 2); line_num++;
tmp 233 source3/utils/log2pcaphex.c assert(fscanf(in, " smb_uid=%d\n", &tmp)); memcpy(buffer+smb_uid, &tmp, 2); line_num++;
tmp 234 source3/utils/log2pcaphex.c assert(fscanf(in, " smb_mid=%d\n", &tmp)); memcpy(buffer+smb_mid, &tmp, 2); line_num++;
tmp 235 source3/utils/log2pcaphex.c assert(fscanf(in, " smt_wct=%d\n", &tmp)); buffer[smb_wct] = tmp; line_num++;
tmp 237 source3/utils/log2pcaphex.c assert(fscanf(in, " smb_vwv[%*3d]=%*5d (0x%X)\n", &tmp)); line_num++;
tmp 238 source3/utils/log2pcaphex.c memcpy(buffer+smb_vwv+i*2, &tmp, 2);
tmp 262 source3/utils/log2pcaphex.c unsigned int tmp;
tmp 278 source3/utils/log2pcaphex.c if(!fscanf(in, "%02X", &tmp)) {
tmp 283 source3/utils/log2pcaphex.c while ((tmp = getc(in)) != '\n');
tmp 286 source3/utils/log2pcaphex.c buffer[i] = tmp;
tmp 290 source3/utils/log2pcaphex.c while ((tmp = getc(in)) != '\n');
tmp 204 source3/utils/net_idmap.c char *tmp;
tmp 209 source3/utils/net_idmap.c r = asprintf(&tmp, "IDMAP_ALLOC_%s", backend);
tmp 211 source3/utils/net_idmap.c r = asprintf(&tmp, "IDMAP_%s_%s", backend, domain);
tmp 216 source3/utils/net_idmap.c strupper_m(tmp); /* make sure the key is case insensitive */
tmp 217 source3/utils/net_idmap.c ret = secrets_store_generic(tmp, identity, secret);
tmp 219 source3/utils/net_idmap.c free(tmp);
tmp 804 source3/utils/net_sam.c const char *tmp = talloc_asprintf(
tmp 808 source3/utils/net_sam.c grpname, dom, name, tmp));
tmp 809 source3/utils/net_sam.c grpname = tmp;
tmp 2147 source3/utils/ntlm_auth.c char tmp[INITIAL_BUFFER_SIZE+1];
tmp 2162 source3/utils/ntlm_auth.c if (fgets(tmp, sizeof(tmp)-1, stdin) == NULL) {
tmp 2173 source3/utils/ntlm_auth.c buf = talloc_strdup_append_buffer(buf, tmp);
tmp 256 source3/utils/pdbedit.c time_t tmp;
tmp 282 source3/utils/pdbedit.c tmp = pdb_get_logon_time(sam_pwent);
tmp 284 source3/utils/pdbedit.c tmp ? http_timestring(talloc_tos(), tmp) : "0");
tmp 286 source3/utils/pdbedit.c tmp = pdb_get_logoff_time(sam_pwent);
tmp 288 source3/utils/pdbedit.c tmp ? http_timestring(talloc_tos(), tmp) : "0");
tmp 290 source3/utils/pdbedit.c tmp = pdb_get_kickoff_time(sam_pwent);
tmp 292 source3/utils/pdbedit.c tmp ? http_timestring(talloc_tos(), tmp) : "0");
tmp 294 source3/utils/pdbedit.c tmp = pdb_get_pass_last_set_time(sam_pwent);
tmp 296 source3/utils/pdbedit.c tmp ? http_timestring(talloc_tos(), tmp) : "0");
tmp 298 source3/utils/pdbedit.c tmp = pdb_get_pass_can_change_time(sam_pwent);
tmp 300 source3/utils/pdbedit.c tmp ? http_timestring(talloc_tos(), tmp) : "0");
tmp 302 source3/utils/pdbedit.c tmp = pdb_get_pass_must_change_time(sam_pwent);
tmp 304 source3/utils/pdbedit.c tmp ? http_timestring(talloc_tos(), tmp) : "0");
tmp 306 source3/utils/pdbedit.c tmp = pdb_get_bad_password_time(sam_pwent);
tmp 308 source3/utils/pdbedit.c tmp ? http_timestring(talloc_tos(), tmp) : "0");
tmp 87 source3/utils/smbget.c char tmp[128];
tmp 94 source3/utils/smbget.c if (fgets(tmp, sizeof(tmp), stdin) == NULL) {
tmp 97 source3/utils/smbget.c if(tmp[strlen(tmp)-1] == '\n')tmp[strlen(tmp)-1] = '\0';
tmp 98 source3/utils/smbget.c strncpy(un, tmp, unlen-1);
tmp 480 source3/utils/status_profile.c int tmp;
tmp 509 source3/utils/status_profile.c tmp = last;
tmp 511 source3/utils/status_profile.c current = tmp;
tmp 39 source3/winbindd/idmap_ldap.c char *tmp, *ret;
tmp 43 source3/winbindd/idmap_ldap.c r = asprintf(&tmp, "IDMAP_ALLOC_%s", backend);
tmp 45 source3/winbindd/idmap_ldap.c r = asprintf(&tmp, "IDMAP_%s_%s", backend, domain);
tmp 51 source3/winbindd/idmap_ldap.c strupper_m(tmp); /* make sure the key is case insensitive */
tmp 52 source3/winbindd/idmap_ldap.c ret = secrets_fetch_generic(tmp, identity);
tmp 54 source3/winbindd/idmap_ldap.c SAFE_FREE(tmp);
tmp 102 source3/winbindd/idmap_ldap.c const char *tmp = NULL;
tmp 108 source3/winbindd/idmap_ldap.c tmp = lp_parm_const_string(-1, config_option, "ldap_user_dn", NULL);
tmp 110 source3/winbindd/idmap_ldap.c if ( tmp ) {
tmp 114 source3/winbindd/idmap_ldap.c NULL, tmp);
tmp 117 source3/winbindd/idmap_ldap.c dom->name, tmp);
tmp 123 source3/winbindd/idmap_ldap.c tmp, (dom==NULL)?"ALLOC":dom->name));
tmp 127 source3/winbindd/idmap_ldap.c *dn = talloc_strdup(mem_ctx, tmp);
tmp 249 source3/winbindd/idmap_ldap.c const char *tmp;
tmp 295 source3/winbindd/idmap_ldap.c tmp = lp_parm_const_string(-1, "idmap alloc config",
tmp 298 source3/winbindd/idmap_ldap.c if ( ! tmp) {
tmp 304 source3/winbindd/idmap_ldap.c idmap_alloc_ldap->url = talloc_strdup(idmap_alloc_ldap, tmp);
tmp 308 source3/winbindd/idmap_ldap.c tmp = lp_parm_const_string(-1, "idmap alloc config",
tmp 310 source3/winbindd/idmap_ldap.c if ( ! tmp || ! *tmp) {
tmp 311 source3/winbindd/idmap_ldap.c tmp = lp_ldap_idmap_suffix();
tmp 312 source3/winbindd/idmap_ldap.c if ( ! tmp) {
tmp 319 source3/winbindd/idmap_ldap.c idmap_alloc_ldap->suffix = talloc_strdup(idmap_alloc_ldap, tmp);
tmp 768 source3/winbindd/idmap_ldap.c const char *tmp = NULL;
tmp 844 source3/winbindd/idmap_ldap.c tmp = lp_parm_const_string(-1, config_option, "ldap_url", NULL);
tmp 846 source3/winbindd/idmap_ldap.c if ( ! tmp) {
tmp 852 source3/winbindd/idmap_ldap.c ctx->url = talloc_strdup(ctx, tmp);
tmp 856 source3/winbindd/idmap_ldap.c tmp = lp_parm_const_string(-1, config_option, "ldap_base_dn", NULL);
tmp 857 source3/winbindd/idmap_ldap.c if ( ! tmp || ! *tmp) {
tmp 858 source3/winbindd/idmap_ldap.c tmp = lp_ldap_idmap_suffix();
tmp 859 source3/winbindd/idmap_ldap.c if ( ! tmp) {
tmp 866 source3/winbindd/idmap_ldap.c ctx->suffix = talloc_strdup(ctx, tmp);
tmp 1023 source3/winbindd/idmap_ldap.c char *tmp = NULL;
tmp 1055 source3/winbindd/idmap_ldap.c tmp = smbldap_talloc_single_attribute(
tmp 1058 source3/winbindd/idmap_ldap.c if ( ! tmp) {
tmp 1060 source3/winbindd/idmap_ldap.c tmp = smbldap_talloc_single_attribute(
tmp 1064 source3/winbindd/idmap_ldap.c if ( ! tmp) { /* wow very strange entry, how did it match ? */
tmp 1071 source3/winbindd/idmap_ldap.c id = strtoul(tmp, NULL, 10);
tmp 1079 source3/winbindd/idmap_ldap.c TALLOC_FREE(tmp);
tmp 1082 source3/winbindd/idmap_ldap.c TALLOC_FREE(tmp);
tmp 1257 source3/winbindd/idmap_ldap.c char *tmp = NULL;
tmp 1304 source3/winbindd/idmap_ldap.c tmp = smbldap_talloc_single_attribute(
tmp 1307 source3/winbindd/idmap_ldap.c if ( ! tmp) {
tmp 1309 source3/winbindd/idmap_ldap.c tmp = smbldap_talloc_single_attribute(
tmp 1313 source3/winbindd/idmap_ldap.c if ( ! tmp) { /* no ids ?? */
tmp 1320 source3/winbindd/idmap_ldap.c id = strtoul(tmp, NULL, 10);
tmp 1328 source3/winbindd/idmap_ldap.c TALLOC_FREE(tmp);
tmp 1331 source3/winbindd/idmap_ldap.c TALLOC_FREE(tmp);
tmp 906 source3/winbindd/idmap_tdb.c fstring tmp;
tmp 942 source3/winbindd/idmap_tdb.c ctx, "%s", sid_to_fstring(tmp, map->sid))) == NULL) {
tmp 1001 source3/winbindd/idmap_tdb.c fstring tmp;
tmp 1038 source3/winbindd/idmap_tdb.c ctx, "%s", sid_to_fstring(tmp, map->sid))) == NULL) {
tmp 101 source3/winbindd/winbindd.c struct winbindd_cli_state *tmp;
tmp 111 source3/winbindd/winbindd.c for(tmp = winbindd_client_list(); tmp; tmp = tmp->next) {
tmp 113 source3/winbindd/winbindd.c (unsigned long)tmp->pid, tmp->sock));
tmp 623 source3/winbindd/winbindd_async.c fstring tmp;
tmp 625 source3/winbindd/winbindd_async.c "%s\n", sid_to_fstring(tmp, &sids[i]));
tmp 1174 source3/winbindd/winbindd_cache.c fstring key_str, tmp;
tmp 1189 source3/winbindd/winbindd_cache.c fstr_sprintf(key_str, "CRED/%s", sid_to_fstring(tmp, sid));
tmp 1214 source3/winbindd/winbindd_cache.c fstring tmp;
tmp 1232 source3/winbindd/winbindd_cache.c sid_to_fstring(tmp, sid));
tmp 1781 source3/winbindd/winbindd_cache.c fstring tmp;
tmp 1789 source3/winbindd/winbindd_cache.c sid_to_fstring(tmp, &sid));
tmp 1905 source3/winbindd/winbindd_cache.c fstring tmp;
tmp 1911 source3/winbindd/winbindd_cache.c sid_to_fstring(tmp, user_sid));
tmp 2082 source3/winbindd/winbindd_cache.c fstring tmp;
tmp 2084 source3/winbindd/winbindd_cache.c sid_to_fstring(tmp, &sids[i]));
tmp 2763 source3/winbindd/winbindd_cache.c fstring tmp;
tmp 2777 source3/winbindd/winbindd_cache.c sid_to_fstring(tmp, sid));
tmp 2984 source3/winbindd/winbindd_cache.c fstring key_str, tmp;
tmp 2988 source3/winbindd/winbindd_cache.c fstr_sprintf(key_str, "CRED/%s", sid_to_fstring(tmp, sid));
tmp 3923 source3/winbindd/winbindd_cache.c fstring tmp;
tmp 3934 source3/winbindd/winbindd_cache.c sid_to_fstring(tmp, &domains[i].sid),
tmp 4205 source3/winbindd/winbindd_cache.c fstring tmp;
tmp 4215 source3/winbindd/winbindd_cache.c centry_end(centry, "NSS/PWINFO/%s", sid_to_fstring(tmp, user_sid) );
tmp 4232 source3/winbindd/winbindd_cache.c fstring tmp;
tmp 4238 source3/winbindd/winbindd_cache.c sid_to_fstring(tmp, user_sid));
tmp 587 source3/winbindd/winbindd_cm.c const char *tmp = NULL;
tmp 631 source3/winbindd/winbindd_cm.c tmp = talloc_strdup(
tmp 633 source3/winbindd/winbindd_cm.c if (tmp == NULL) {
tmp 651 source3/winbindd/winbindd_cm.c &tmp,
tmp 673 source3/winbindd/winbindd_cm.c p = strip_hostname(tmp);
tmp 763 source3/winbindd/winbindd_group.c char *tmp;
tmp 774 source3/winbindd/winbindd_group.c &tmp);
tmp 780 source3/winbindd/winbindd_group.c tmp = state->request.data.groupname;
tmp 790 source3/winbindd/winbindd_group.c parse_domain_user(tmp, name_domain, name_group);
tmp 818 source3/winbindd/winbindd_group.c fstrcpy( name_group, tmp );
tmp 1257 source4/client/client.c struct file_list *tmp;
tmp 1261 source4/client/client.c tmp = list;
tmp 1263 source4/client/client.c SAFE_FREE(tmp->file_path);
tmp 1264 source4/client/client.c SAFE_FREE(tmp);
tmp 2801 source4/client/client.c char *tmp;
tmp 2804 source4/client/client.c tmp = talloc_asprintf(NULL, "%s/%s", info->dirmask, f->name);
tmp 2806 source4/client/client.c tmp = talloc_strdup(NULL, f->name);
tmp 2809 source4/client/client.c tmp = talloc_append_string(NULL, tmp, "/");
tmp 2810 source4/client/client.c info->matches[info->count] = tmp;
tmp 437 source4/client/smbmount.c pstring tmp;
tmp 481 source4/client/smbmount.c slprintf(tmp, sizeof(tmp)-1, "%d", mount_uid);
tmp 483 source4/client/smbmount.c args[i++] = smb_xstrdup(tmp);
tmp 486 source4/client/smbmount.c slprintf(tmp, sizeof(tmp)-1, "%d", mount_gid);
tmp 488 source4/client/smbmount.c args[i++] = smb_xstrdup(tmp);
tmp 491 source4/client/smbmount.c slprintf(tmp, sizeof(tmp)-1, "0%o", mount_fmask);
tmp 493 source4/client/smbmount.c args[i++] = smb_xstrdup(tmp);
tmp 496 source4/client/smbmount.c slprintf(tmp, sizeof(tmp)-1, "0%o", mount_dmask);
tmp 498 source4/client/smbmount.c args[i++] = smb_xstrdup(tmp);
tmp 1492 source4/dsdb/samdb/ldb_modules/password_hash.c char *tmp;
tmp 1530 source4/dsdb/samdb/ldb_modules/password_hash.c tmp = ldb_dn_canonical_string(data, ares->message->dn);
tmp 1531 source4/dsdb/samdb/ldb_modules/password_hash.c if (!tmp) {
tmp 1537 source4/dsdb/samdb/ldb_modules/password_hash.c p = strchr(tmp, '/');
tmp 1542 source4/dsdb/samdb/ldb_modules/password_hash.c data->dns_domain = strlower_talloc(data, tmp);
tmp 1548 source4/dsdb/samdb/ldb_modules/password_hash.c data->realm = strupper_talloc(data, tmp);
tmp 1555 source4/dsdb/samdb/ldb_modules/password_hash.c p = strchr(tmp, '.');
tmp 1559 source4/dsdb/samdb/ldb_modules/password_hash.c data->netbios_domain = strupper_talloc(data, tmp);
tmp 1566 source4/dsdb/samdb/ldb_modules/password_hash.c talloc_free(tmp);
tmp 402 source4/heimdal/kdc/kaserver.c int32_t tmp;
tmp 422 source4/heimdal/kdc/kaserver.c krb5_ret_int32 (sp, &tmp);
tmp 423 source4/heimdal/kdc/kaserver.c *start_time = tmp;
tmp 424 source4/heimdal/kdc/kaserver.c krb5_ret_int32 (sp, &tmp);
tmp 425 source4/heimdal/kdc/kaserver.c *end_time = tmp;
tmp 602 source4/heimdal/kdc/kaserver.c int32_t tmp;
tmp 604 source4/heimdal/kdc/kaserver.c krb5_ret_int32 (sp, &tmp);
tmp 605 source4/heimdal/kdc/kaserver.c *kvno = tmp;
tmp 815 source4/heimdal/kdc/kaserver.c int32_t tmp;
tmp 818 source4/heimdal/kdc/kaserver.c krb5_ret_int32 (tsp, &tmp);
tmp 819 source4/heimdal/kdc/kaserver.c start_time = tmp;
tmp 820 source4/heimdal/kdc/kaserver.c krb5_ret_int32 (tsp, &tmp);
tmp 821 source4/heimdal/kdc/kaserver.c end_time = tmp;
tmp 690 source4/heimdal/kdc/kerberos4.c unsigned char tmp[4] = { 0, 0, 0, 0 };
tmp 696 source4/heimdal/kdc/kerberos4.c memcpy(tmp, et->caddr->val[i].address.data, 4);
tmp 700 source4/heimdal/kdc/kerberos4.c krb5_storage_write(sp, tmp, sizeof(tmp));
tmp 555 source4/heimdal/kdc/krb5tgs.c char **realms, **tmp;
tmp 595 source4/heimdal/kdc/krb5tgs.c tmp = realloc(realms, (num_realms + 1) * sizeof(*realms));
tmp 596 source4/heimdal/kdc/krb5tgs.c if(tmp == NULL){
tmp 600 source4/heimdal/kdc/krb5tgs.c realms = tmp;
tmp 1467 source4/heimdal/kdc/pkinit.c struct pk_allowed_princ *tmp;
tmp 1471 source4/heimdal/kdc/pkinit.c tmp = realloc(principal_mappings.val,
tmp 1472 source4/heimdal/kdc/pkinit.c (principal_mappings.len + 1) * sizeof(*tmp));
tmp 1473 source4/heimdal/kdc/pkinit.c if (tmp == NULL)
tmp 1475 source4/heimdal/kdc/pkinit.c principal_mappings.val = tmp;
tmp 473 source4/heimdal/kuser/kinit.c int tmp = parse_time (start_str, "s");
tmp 474 source4/heimdal/kuser/kinit.c if (tmp < 0)
tmp 477 source4/heimdal/kuser/kinit.c start_time = tmp;
tmp 825 source4/heimdal/kuser/kinit.c int tmp = parse_time (lifetime, "s");
tmp 826 source4/heimdal/kuser/kinit.c if (tmp < 0)
tmp 829 source4/heimdal/kuser/kinit.c ticket_life = tmp;
tmp 103 source4/heimdal/lib/asn1/der_get.c unsigned tmp;
tmp 113 source4/heimdal/lib/asn1/der_get.c e = der_get_unsigned (p, v, &tmp, &l);
tmp 115 source4/heimdal/lib/asn1/der_get.c *val = tmp;
tmp 60 source4/heimdal/lib/asn1/gen.c struct import *tmp = emalloc (sizeof(*tmp));
tmp 62 source4/heimdal/lib/asn1/gen.c tmp->module = module;
tmp 63 source4/heimdal/lib/asn1/gen.c tmp->next = imports;
tmp 64 source4/heimdal/lib/asn1/gen.c imports = tmp;
tmp 90 source4/heimdal/lib/asn1/hash.c Hashentry *tmp;
tmp 92 source4/heimdal/lib/asn1/hash.c tmp = _search(htab, ptr);
tmp 93 source4/heimdal/lib/asn1/hash.c return tmp ? tmp->ptr : tmp;
tmp 269 source4/heimdal/lib/gssapi/krb5/acquire_cred.c krb5_keytab_entry tmp;
tmp 275 source4/heimdal/lib/gssapi/krb5/acquire_cred.c if (krb5_kt_next_entry(context, handle->keytab, &tmp, &c) == 0) {
tmp 276 source4/heimdal/lib/gssapi/krb5/acquire_cred.c krb5_kt_free_entry(context, &tmp);
tmp 203 source4/heimdal/lib/gssapi/krb5/cfx.c u_char *tmp, buf[256];
tmp 217 source4/heimdal/lib/gssapi/krb5/cfx.c tmp = buf;
tmp 219 source4/heimdal/lib/gssapi/krb5/cfx.c tmp = malloc(rrc);
tmp 220 source4/heimdal/lib/gssapi/krb5/cfx.c if (tmp == NULL)
tmp 225 source4/heimdal/lib/gssapi/krb5/cfx.c memcpy(tmp, data, rrc);
tmp 227 source4/heimdal/lib/gssapi/krb5/cfx.c memcpy((u_char *)data + left, tmp, rrc);
tmp 229 source4/heimdal/lib/gssapi/krb5/cfx.c memcpy(tmp, (u_char *)data + left, rrc);
tmp 231 source4/heimdal/lib/gssapi/krb5/cfx.c memcpy(data, tmp, rrc);
tmp 235 source4/heimdal/lib/gssapi/krb5/cfx.c free(tmp);
tmp 148 source4/heimdal/lib/gssapi/krb5/get_mic.c char *tmp;
tmp 174 source4/heimdal/lib/gssapi/krb5/get_mic.c tmp = malloc (message_buffer->length + 8);
tmp 175 source4/heimdal/lib/gssapi/krb5/get_mic.c if (tmp == NULL) {
tmp 182 source4/heimdal/lib/gssapi/krb5/get_mic.c memcpy (tmp, p - 8, 8);
tmp 183 source4/heimdal/lib/gssapi/krb5/get_mic.c memcpy (tmp + 8, message_buffer->value, message_buffer->length);
tmp 190 source4/heimdal/lib/gssapi/krb5/get_mic.c free (tmp);
tmp 199 source4/heimdal/lib/gssapi/krb5/get_mic.c tmp,
tmp 202 source4/heimdal/lib/gssapi/krb5/get_mic.c free (tmp);
tmp 68 source4/heimdal/lib/gssapi/krb5/import_name.c char *tmp;
tmp 70 source4/heimdal/lib/gssapi/krb5/import_name.c tmp = malloc (input_name_buffer->length + 1);
tmp 71 source4/heimdal/lib/gssapi/krb5/import_name.c if (tmp == NULL) {
tmp 75 source4/heimdal/lib/gssapi/krb5/import_name.c memcpy (tmp,
tmp 78 source4/heimdal/lib/gssapi/krb5/import_name.c tmp[input_name_buffer->length] = '\0';
tmp 80 source4/heimdal/lib/gssapi/krb5/import_name.c ret = parse_krb5_name(minor_status, context, tmp, output_name);
tmp 81 source4/heimdal/lib/gssapi/krb5/import_name.c free(tmp);
tmp 135 source4/heimdal/lib/gssapi/krb5/import_name.c char *tmp, *p, *host = NULL;
tmp 137 source4/heimdal/lib/gssapi/krb5/import_name.c tmp = malloc (input_name_buffer->length + 1);
tmp 138 source4/heimdal/lib/gssapi/krb5/import_name.c if (tmp == NULL) {
tmp 142 source4/heimdal/lib/gssapi/krb5/import_name.c memcpy (tmp,
tmp 145 source4/heimdal/lib/gssapi/krb5/import_name.c tmp[input_name_buffer->length] = '\0';
tmp 147 source4/heimdal/lib/gssapi/krb5/import_name.c p = strchr (tmp, '@');
tmp 153 source4/heimdal/lib/gssapi/krb5/import_name.c kerr = krb5_make_principal(context, &princ, NULL, tmp, host, NULL);
tmp 154 source4/heimdal/lib/gssapi/krb5/import_name.c free (tmp);
tmp 55 source4/heimdal/lib/gssapi/krb5/import_sec_context.c int32_t flags, tmp;
tmp 98 source4/heimdal/lib/gssapi/krb5/import_sec_context.c if (krb5_ret_int32 (sp, &tmp) != 0)
tmp 100 source4/heimdal/lib/gssapi/krb5/import_sec_context.c ac->flags = tmp;
tmp 146 source4/heimdal/lib/gssapi/krb5/import_sec_context.c if (krb5_ret_int32 (sp, &tmp) != 0)
tmp 148 source4/heimdal/lib/gssapi/krb5/import_sec_context.c ac->keytype = tmp;
tmp 149 source4/heimdal/lib/gssapi/krb5/import_sec_context.c if (krb5_ret_int32 (sp, &tmp) != 0)
tmp 151 source4/heimdal/lib/gssapi/krb5/import_sec_context.c ac->cksumtype = tmp;
tmp 191 source4/heimdal/lib/gssapi/krb5/import_sec_context.c if (krb5_ret_int32 (sp, &tmp))
tmp 193 source4/heimdal/lib/gssapi/krb5/import_sec_context.c ctx->flags = tmp;
tmp 194 source4/heimdal/lib/gssapi/krb5/import_sec_context.c if (krb5_ret_int32 (sp, &tmp))
tmp 196 source4/heimdal/lib/gssapi/krb5/import_sec_context.c ctx->more_flags = tmp;
tmp 197 source4/heimdal/lib/gssapi/krb5/import_sec_context.c if (krb5_ret_int32 (sp, &tmp))
tmp 199 source4/heimdal/lib/gssapi/krb5/import_sec_context.c ctx->lifetime = tmp;
tmp 247 source4/heimdal/lib/gssapi/krb5/unwrap.c krb5_data tmp;
tmp 256 source4/heimdal/lib/gssapi/krb5/unwrap.c p, input_message_buffer->length - len, &tmp);
tmp 262 source4/heimdal/lib/gssapi/krb5/unwrap.c assert (tmp.length == input_message_buffer->length - len);
tmp 264 source4/heimdal/lib/gssapi/krb5/unwrap.c memcpy (p, tmp.data, tmp.length);
tmp 265 source4/heimdal/lib/gssapi/krb5/unwrap.c krb5_data_free(&tmp);
tmp 151 source4/heimdal/lib/gssapi/krb5/verify_mic.c char *tmp;
tmp 234 source4/heimdal/lib/gssapi/krb5/verify_mic.c tmp = malloc (message_buffer->length + 8);
tmp 235 source4/heimdal/lib/gssapi/krb5/verify_mic.c if (tmp == NULL) {
tmp 242 source4/heimdal/lib/gssapi/krb5/verify_mic.c memcpy (tmp, p - 8, 8);
tmp 243 source4/heimdal/lib/gssapi/krb5/verify_mic.c memcpy (tmp + 8, message_buffer->value, message_buffer->length);
tmp 251 source4/heimdal/lib/gssapi/krb5/verify_mic.c tmp, message_buffer->length + 8,
tmp 253 source4/heimdal/lib/gssapi/krb5/verify_mic.c free (tmp);
tmp 485 source4/heimdal/lib/gssapi/krb5/wrap.c krb5_data tmp;
tmp 497 source4/heimdal/lib/gssapi/krb5/wrap.c p, datalen, &tmp);
tmp 506 source4/heimdal/lib/gssapi/krb5/wrap.c assert (tmp.length == datalen);
tmp 508 source4/heimdal/lib/gssapi/krb5/wrap.c memcpy (p, tmp.data, datalen);
tmp 509 source4/heimdal/lib/gssapi/krb5/wrap.c krb5_data_free(&tmp);
tmp 42 source4/heimdal/lib/gssapi/mech/gss_add_oid_set_member.c gss_OID tmp;
tmp 57 source4/heimdal/lib/gssapi/mech/gss_add_oid_set_member.c tmp = realloc ((*oid_set)->elements, n * sizeof(gss_OID_desc));
tmp 58 source4/heimdal/lib/gssapi/mech/gss_add_oid_set_member.c if (tmp == NULL) {
tmp 62 source4/heimdal/lib/gssapi/mech/gss_add_oid_set_member.c (*oid_set)->elements = tmp;
tmp 102 source4/heimdal/lib/gssapi/spnego/cred_stubs.c OM_uint32 ret, tmp;
tmp 161 source4/heimdal/lib/gssapi/spnego/cred_stubs.c gss_release_oid_set(&tmp, &mechs);
tmp 166 source4/heimdal/lib/gssapi/spnego/cred_stubs.c _gss_spnego_release_cred(&tmp, &cred_handle);
tmp 232 source4/heimdal/lib/gssapi/spnego/cred_stubs.c OM_uint32 ret, tmp;
tmp 257 source4/heimdal/lib/gssapi/spnego/cred_stubs.c _gss_spnego_release_cred(&tmp, &spnego_output_cred_handle);
tmp 323 source4/heimdal/lib/gssapi/spnego/init_sec_context.c size_t tmp;
tmp 331 source4/heimdal/lib/gssapi/spnego/init_sec_context.c &tmp);
tmp 332 source4/heimdal/lib/gssapi/spnego/init_sec_context.c if (ret == 0 && tmp + buf_len != buf_size)
tmp 84 source4/heimdal/lib/hcrypto/aes.c unsigned char tmp[AES_BLOCK_SIZE];
tmp 90 source4/heimdal/lib/hcrypto/aes.c tmp[i] = in[i] ^ iv[i];
tmp 91 source4/heimdal/lib/hcrypto/aes.c AES_encrypt(tmp, out, key);
tmp 99 source4/heimdal/lib/hcrypto/aes.c tmp[i] = in[i] ^ iv[i];
tmp 101 source4/heimdal/lib/hcrypto/aes.c tmp[i] = iv[i];
tmp 102 source4/heimdal/lib/hcrypto/aes.c AES_encrypt(tmp, out, key);
tmp 107 source4/heimdal/lib/hcrypto/aes.c memcpy(tmp, in, AES_BLOCK_SIZE);
tmp 108 source4/heimdal/lib/hcrypto/aes.c AES_decrypt(tmp, out, key);
tmp 111 source4/heimdal/lib/hcrypto/aes.c memcpy(iv, tmp, AES_BLOCK_SIZE);
tmp 117 source4/heimdal/lib/hcrypto/aes.c memcpy(tmp, in, AES_BLOCK_SIZE);
tmp 118 source4/heimdal/lib/hcrypto/aes.c AES_decrypt(tmp, out, key);
tmp 121 source4/heimdal/lib/hcrypto/aes.c memcpy(iv, tmp, AES_BLOCK_SIZE);
tmp 1410 source4/heimdal/lib/hcrypto/camellia-ntt.c u32 tmp[4];
tmp 1412 source4/heimdal/lib/hcrypto/camellia-ntt.c tmp[0] = GETU32(plaintext);
tmp 1413 source4/heimdal/lib/hcrypto/camellia-ntt.c tmp[1] = GETU32(plaintext + 4);
tmp 1414 source4/heimdal/lib/hcrypto/camellia-ntt.c tmp[2] = GETU32(plaintext + 8);
tmp 1415 source4/heimdal/lib/hcrypto/camellia-ntt.c tmp[3] = GETU32(plaintext + 12);
tmp 1419 source4/heimdal/lib/hcrypto/camellia-ntt.c camellia_encrypt128(keyTable, tmp);
tmp 1424 source4/heimdal/lib/hcrypto/camellia-ntt.c camellia_encrypt256(keyTable, tmp);
tmp 1430 source4/heimdal/lib/hcrypto/camellia-ntt.c PUTU32(ciphertext, tmp[0]);
tmp 1431 source4/heimdal/lib/hcrypto/camellia-ntt.c PUTU32(ciphertext + 4, tmp[1]);
tmp 1432 source4/heimdal/lib/hcrypto/camellia-ntt.c PUTU32(ciphertext + 8, tmp[2]);
tmp 1433 source4/heimdal/lib/hcrypto/camellia-ntt.c PUTU32(ciphertext + 12, tmp[3]);
tmp 1441 source4/heimdal/lib/hcrypto/camellia-ntt.c u32 tmp[4];
tmp 1443 source4/heimdal/lib/hcrypto/camellia-ntt.c tmp[0] = GETU32(ciphertext);
tmp 1444 source4/heimdal/lib/hcrypto/camellia-ntt.c tmp[1] = GETU32(ciphertext + 4);
tmp 1445 source4/heimdal/lib/hcrypto/camellia-ntt.c tmp[2] = GETU32(ciphertext + 8);
tmp 1446 source4/heimdal/lib/hcrypto/camellia-ntt.c tmp[3] = GETU32(ciphertext + 12);
tmp 1450 source4/heimdal/lib/hcrypto/camellia-ntt.c camellia_decrypt128(keyTable, tmp);
tmp 1455 source4/heimdal/lib/hcrypto/camellia-ntt.c camellia_decrypt256(keyTable, tmp);
tmp 1460 source4/heimdal/lib/hcrypto/camellia-ntt.c PUTU32(plaintext, tmp[0]);
tmp 1461 source4/heimdal/lib/hcrypto/camellia-ntt.c PUTU32(plaintext + 4, tmp[1]);
tmp 1462 source4/heimdal/lib/hcrypto/camellia-ntt.c PUTU32(plaintext + 8, tmp[2]);
tmp 1463 source4/heimdal/lib/hcrypto/camellia-ntt.c PUTU32(plaintext + 12, tmp[3]);
tmp 80 source4/heimdal/lib/hcrypto/camellia.c unsigned char tmp[CAMELLIA_BLOCK_SIZE];
tmp 86 source4/heimdal/lib/hcrypto/camellia.c tmp[i] = in[i] ^ iv[i];
tmp 87 source4/heimdal/lib/hcrypto/camellia.c CAMELLIA_encrypt(tmp, out, key);
tmp 95 source4/heimdal/lib/hcrypto/camellia.c tmp[i] = in[i] ^ iv[i];
tmp 97 source4/heimdal/lib/hcrypto/camellia.c tmp[i] = iv[i];
tmp 98 source4/heimdal/lib/hcrypto/camellia.c CAMELLIA_encrypt(tmp, out, key);
tmp 103 source4/heimdal/lib/hcrypto/camellia.c memcpy(tmp, in, CAMELLIA_BLOCK_SIZE);
tmp 104 source4/heimdal/lib/hcrypto/camellia.c CAMELLIA_decrypt(tmp, out, key);
tmp 107 source4/heimdal/lib/hcrypto/camellia.c memcpy(iv, tmp, CAMELLIA_BLOCK_SIZE);
tmp 113 source4/heimdal/lib/hcrypto/camellia.c memcpy(tmp, in, CAMELLIA_BLOCK_SIZE);
tmp 114 source4/heimdal/lib/hcrypto/camellia.c CAMELLIA_decrypt(tmp, out, key);
tmp 117 source4/heimdal/lib/hcrypto/camellia.c memcpy(iv, tmp, CAMELLIA_BLOCK_SIZE);
tmp 435 source4/heimdal/lib/hcrypto/des.c unsigned char tmp[DES_CBLOCK_LEN];
tmp 436 source4/heimdal/lib/hcrypto/des.c memcpy(tmp, input, length);
tmp 437 source4/heimdal/lib/hcrypto/des.c memset(tmp + length, 0, DES_CBLOCK_LEN - length);
tmp 438 source4/heimdal/lib/hcrypto/des.c load(tmp, u);
tmp 458 source4/heimdal/lib/hcrypto/des.c unsigned char tmp[DES_CBLOCK_LEN];
tmp 459 source4/heimdal/lib/hcrypto/des.c memcpy(tmp, input, length);
tmp 460 source4/heimdal/lib/hcrypto/des.c memset(tmp + length, 0, DES_CBLOCK_LEN - length);
tmp 461 source4/heimdal/lib/hcrypto/des.c load(tmp, u);
tmp 513 source4/heimdal/lib/hcrypto/des.c unsigned char tmp[DES_CBLOCK_LEN];
tmp 514 source4/heimdal/lib/hcrypto/des.c memcpy(tmp, input, length);
tmp 515 source4/heimdal/lib/hcrypto/des.c memset(tmp + length, 0, DES_CBLOCK_LEN - length);
tmp 516 source4/heimdal/lib/hcrypto/des.c load(tmp, u);
tmp 536 source4/heimdal/lib/hcrypto/des.c unsigned char tmp[DES_CBLOCK_LEN];
tmp 537 source4/heimdal/lib/hcrypto/des.c memcpy(tmp, input, length);
tmp 538 source4/heimdal/lib/hcrypto/des.c memset(tmp + length, 0, DES_CBLOCK_LEN - length);
tmp 539 source4/heimdal/lib/hcrypto/des.c load(tmp, u);
tmp 640 source4/heimdal/lib/hcrypto/des.c unsigned char tmp[DES_CBLOCK_LEN];
tmp 641 source4/heimdal/lib/hcrypto/des.c memcpy(tmp, input, length);
tmp 642 source4/heimdal/lib/hcrypto/des.c memset(tmp + length, 0, DES_CBLOCK_LEN - length);
tmp 643 source4/heimdal/lib/hcrypto/des.c load(tmp, u);
tmp 663 source4/heimdal/lib/hcrypto/des.c unsigned char tmp[DES_CBLOCK_LEN];
tmp 664 source4/heimdal/lib/hcrypto/des.c memcpy(tmp, input, length);
tmp 665 source4/heimdal/lib/hcrypto/des.c memset(tmp + length, 0, DES_CBLOCK_LEN - length);
tmp 666 source4/heimdal/lib/hcrypto/des.c load(tmp, u);
tmp 700 source4/heimdal/lib/hcrypto/des.c unsigned char tmp[DES_CBLOCK_LEN];
tmp 713 source4/heimdal/lib/hcrypto/des.c store(uiv, tmp);
tmp 715 source4/heimdal/lib/hcrypto/des.c output[i] = tmp[i] ^ input[i];
tmp 734 source4/heimdal/lib/hcrypto/des.c store(uiv, tmp);
tmp 738 source4/heimdal/lib/hcrypto/des.c output[i] = tmp[i] ^ input[i];
tmp 789 source4/heimdal/lib/hcrypto/des.c unsigned char tmp[DES_CBLOCK_LEN];
tmp 790 source4/heimdal/lib/hcrypto/des.c memcpy(tmp, input, length);
tmp 791 source4/heimdal/lib/hcrypto/des.c memset(tmp + length, 0, DES_CBLOCK_LEN - length);
tmp 792 source4/heimdal/lib/hcrypto/des.c load(tmp, u);
tmp 96 source4/heimdal/lib/hcrypto/evp-aes-cts.c unsigned char tmp[AES_BLOCK_SIZE];
tmp 108 source4/heimdal/lib/hcrypto/evp-aes-cts.c tmp[i] = in[i] ^ ivec[i];
tmp 109 source4/heimdal/lib/hcrypto/evp-aes-cts.c AES_encrypt(tmp, out, key);
tmp 117 source4/heimdal/lib/hcrypto/evp-aes-cts.c tmp[i] = in[i] ^ ivec[i];
tmp 119 source4/heimdal/lib/hcrypto/evp-aes-cts.c tmp[i] = 0 ^ ivec[i];
tmp 121 source4/heimdal/lib/hcrypto/evp-aes-cts.c AES_encrypt(tmp, out - AES_BLOCK_SIZE, key);
tmp 131 source4/heimdal/lib/hcrypto/evp-aes-cts.c memcpy(tmp, in, AES_BLOCK_SIZE);
tmp 135 source4/heimdal/lib/hcrypto/evp-aes-cts.c memcpy(ivec, tmp, AES_BLOCK_SIZE);
tmp 143 source4/heimdal/lib/hcrypto/evp-aes-cts.c memcpy(tmp, in, AES_BLOCK_SIZE); /* save last iv */
tmp 155 source4/heimdal/lib/hcrypto/evp-aes-cts.c memcpy(ivec, tmp, AES_BLOCK_SIZE);
tmp 492 source4/heimdal/lib/hcrypto/imath/imath.c mpz_t tmp = *a;
tmp 495 source4/heimdal/lib/hcrypto/imath/imath.c *c = tmp;
tmp 962 source4/heimdal/lib/hcrypto/imath/imath.c mpz_t tmp;
tmp 966 source4/heimdal/lib/hcrypto/imath/imath.c mp_int_init(&tmp);
tmp 967 source4/heimdal/lib/hcrypto/imath/imath.c out = &tmp;
tmp 983 source4/heimdal/lib/hcrypto/imath/imath.c mp_int_clear(&tmp);
tmp 1785 source4/heimdal/lib/hcrypto/imath/imath.c mpz_t tmp;
tmp 1788 source4/heimdal/lib/hcrypto/imath/imath.c if((res = mp_int_init_copy(&tmp, z)) != MP_OK)
tmp 1801 source4/heimdal/lib/hcrypto/imath/imath.c if((cmp = CMPZ(&tmp)) == 0)
tmp 1804 source4/heimdal/lib/hcrypto/imath/imath.c d = s_ddiv(&tmp, (mp_digit)radix);
tmp 1816 source4/heimdal/lib/hcrypto/imath/imath.c mp_int_clear(&tmp);
tmp 1978 source4/heimdal/lib/hcrypto/imath/imath.c unsigned char *tmp;
tmp 1998 source4/heimdal/lib/hcrypto/imath/imath.c for(tmp = buf, i = len; i > 0; --i, ++tmp) {
tmp 2000 source4/heimdal/lib/hcrypto/imath/imath.c *dz |= *tmp;
tmp 2053 source4/heimdal/lib/hcrypto/imath/imath.c unsigned char *tmp;
tmp 2066 source4/heimdal/lib/hcrypto/imath/imath.c for(tmp = buf, i = len; i > 0; --i, ++tmp) {
tmp 2068 source4/heimdal/lib/hcrypto/imath/imath.c *dz |= *tmp;
tmp 2175 source4/heimdal/lib/hcrypto/imath/imath.c mp_digit *tmp;
tmp 2178 source4/heimdal/lib/hcrypto/imath/imath.c if((tmp = s_alloc(nsize)) == NULL)
tmp 2181 source4/heimdal/lib/hcrypto/imath/imath.c COPY(MP_DIGITS(z), tmp, MP_USED(z));
tmp 2183 source4/heimdal/lib/hcrypto/imath/imath.c else if((tmp = s_realloc(MP_DIGITS(z), MP_ALLOC(z), nsize)) == NULL)
tmp 2186 source4/heimdal/lib/hcrypto/imath/imath.c MP_DIGITS(z) = tmp;
tmp 146 source4/heimdal/lib/hcrypto/imath/iprime.c mpz_t tmp;
tmp 148 source4/heimdal/lib/hcrypto/imath/iprime.c if((res = mp_int_init(&tmp)) != MP_OK) return res;
tmp 151 source4/heimdal/lib/hcrypto/imath/iprime.c if((res = mp_int_exptmod_bvalue(s_ptab[i], z, z, &tmp)) != MP_OK)
tmp 154 source4/heimdal/lib/hcrypto/imath/iprime.c if(mp_int_compare_value(&tmp, s_ptab[i]) != 0) {
tmp 155 source4/heimdal/lib/hcrypto/imath/iprime.c mp_int_clear(&tmp);
tmp 160 source4/heimdal/lib/hcrypto/imath/iprime.c mp_int_clear(&tmp);
tmp 161 source4/heimdal/lib/hcrypto/rand-fortuna.c SHA256_CTX tmp;
tmp 163 source4/heimdal/lib/hcrypto/rand-fortuna.c memcpy(&tmp, ctx, sizeof(*ctx));
tmp 164 source4/heimdal/lib/hcrypto/rand-fortuna.c SHA256_Final(dst, &tmp);
tmp 165 source4/heimdal/lib/hcrypto/rand-fortuna.c memset(&tmp, 0, sizeof(tmp));
tmp 205 source4/heimdal/lib/hcrypto/rc2.c unsigned char tmp[RC2_BLOCK_SIZE];
tmp 211 source4/heimdal/lib/hcrypto/rc2.c tmp[i] = in[i] ^ iv[i];
tmp 212 source4/heimdal/lib/hcrypto/rc2.c RC2_encryptc(tmp, out, key);
tmp 220 source4/heimdal/lib/hcrypto/rc2.c tmp[i] = in[i] ^ iv[i];
tmp 222 source4/heimdal/lib/hcrypto/rc2.c tmp[i] = iv[i];
tmp 223 source4/heimdal/lib/hcrypto/rc2.c RC2_encryptc(tmp, out, key);
tmp 228 source4/heimdal/lib/hcrypto/rc2.c memcpy(tmp, in, RC2_BLOCK_SIZE);
tmp 229 source4/heimdal/lib/hcrypto/rc2.c RC2_decryptc(tmp, out, key);
tmp 232 source4/heimdal/lib/hcrypto/rc2.c memcpy(iv, tmp, RC2_BLOCK_SIZE);
tmp 238 source4/heimdal/lib/hcrypto/rc2.c memcpy(tmp, in, RC2_BLOCK_SIZE);
tmp 239 source4/heimdal/lib/hcrypto/rc2.c RC2_decryptc(tmp, out, key);
tmp 242 source4/heimdal/lib/hcrypto/rc2.c memcpy(iv, tmp, RC2_BLOCK_SIZE);
tmp 205 source4/heimdal/lib/hdb/keys.c Key key, *tmp;
tmp 209 source4/heimdal/lib/hdb/keys.c tmp = realloc(*key_set, (*nkeyset + 1) * sizeof((*key_set)[0]));
tmp 210 source4/heimdal/lib/hdb/keys.c if (tmp == NULL)
tmp 213 source4/heimdal/lib/hdb/keys.c *key_set = tmp;
tmp 89 source4/heimdal/lib/krb5/addr_families.c struct sockaddr_in tmp;
tmp 91 source4/heimdal/lib/krb5/addr_families.c memset (&tmp, 0, sizeof(tmp));
tmp 92 source4/heimdal/lib/krb5/addr_families.c tmp.sin_family = AF_INET;
tmp 93 source4/heimdal/lib/krb5/addr_families.c memcpy (&tmp.sin_addr, a->address.data, 4);
tmp 94 source4/heimdal/lib/krb5/addr_families.c tmp.sin_port = port;
tmp 95 source4/heimdal/lib/krb5/addr_families.c memcpy(sa, &tmp, min(sizeof(tmp), *sa_size));
tmp 96 source4/heimdal/lib/krb5/addr_families.c *sa_size = sizeof(tmp);
tmp 105 source4/heimdal/lib/krb5/addr_families.c struct sockaddr_in tmp;
tmp 107 source4/heimdal/lib/krb5/addr_families.c memset (&tmp, 0, sizeof(tmp));
tmp 108 source4/heimdal/lib/krb5/addr_families.c tmp.sin_family = AF_INET;
tmp 109 source4/heimdal/lib/krb5/addr_families.c tmp.sin_port = port;
tmp 110 source4/heimdal/lib/krb5/addr_families.c tmp.sin_addr = *((const struct in_addr *)addr);
tmp 111 source4/heimdal/lib/krb5/addr_families.c memcpy(sa, &tmp, min(sizeof(tmp), *sa_size));
tmp 112 source4/heimdal/lib/krb5/addr_families.c *sa_size = sizeof(tmp);
tmp 144 source4/heimdal/lib/krb5/addr_families.c struct sockaddr_in tmp;
tmp 146 source4/heimdal/lib/krb5/addr_families.c memset (&tmp, 0, sizeof(tmp));
tmp 147 source4/heimdal/lib/krb5/addr_families.c tmp.sin_family = AF_INET;
tmp 148 source4/heimdal/lib/krb5/addr_families.c tmp.sin_port = port;
tmp 149 source4/heimdal/lib/krb5/addr_families.c tmp.sin_addr.s_addr = INADDR_ANY;
tmp 150 source4/heimdal/lib/krb5/addr_families.c memcpy(sa, &tmp, min(sizeof(tmp), *sa_size));
tmp 151 source4/heimdal/lib/krb5/addr_families.c *sa_size = sizeof(tmp);
tmp 279 source4/heimdal/lib/krb5/addr_families.c struct sockaddr_in6 tmp;
tmp 281 source4/heimdal/lib/krb5/addr_families.c memset (&tmp, 0, sizeof(tmp));
tmp 282 source4/heimdal/lib/krb5/addr_families.c tmp.sin6_family = AF_INET6;
tmp 283 source4/heimdal/lib/krb5/addr_families.c memcpy (&tmp.sin6_addr, a->address.data, sizeof(tmp.sin6_addr));
tmp 284 source4/heimdal/lib/krb5/addr_families.c tmp.sin6_port = port;
tmp 285 source4/heimdal/lib/krb5/addr_families.c memcpy(sa, &tmp, min(sizeof(tmp), *sa_size));
tmp 286 source4/heimdal/lib/krb5/addr_families.c *sa_size = sizeof(tmp);
tmp 295 source4/heimdal/lib/krb5/addr_families.c struct sockaddr_in6 tmp;
tmp 297 source4/heimdal/lib/krb5/addr_families.c memset (&tmp, 0, sizeof(tmp));
tmp 298 source4/heimdal/lib/krb5/addr_families.c tmp.sin6_family = AF_INET6;
tmp 299 source4/heimdal/lib/krb5/addr_families.c tmp.sin6_port = port;
tmp 300 source4/heimdal/lib/krb5/addr_families.c tmp.sin6_addr = *((const struct in6_addr *)addr);
tmp 301 source4/heimdal/lib/krb5/addr_families.c memcpy(sa, &tmp, min(sizeof(tmp), *sa_size));
tmp 302 source4/heimdal/lib/krb5/addr_families.c *sa_size = sizeof(tmp);
tmp 331 source4/heimdal/lib/krb5/addr_families.c struct sockaddr_in6 tmp;
tmp 333 source4/heimdal/lib/krb5/addr_families.c memset (&tmp, 0, sizeof(tmp));
tmp 334 source4/heimdal/lib/krb5/addr_families.c tmp.sin6_family = AF_INET6;
tmp 335 source4/heimdal/lib/krb5/addr_families.c tmp.sin6_port = port;
tmp 336 source4/heimdal/lib/krb5/addr_families.c tmp.sin6_addr = in6addr_any;
tmp 337 source4/heimdal/lib/krb5/addr_families.c *sa_size = sizeof(tmp);
tmp 1370 source4/heimdal/lib/krb5/addr_families.c krb5_address *tmp;
tmp 1374 source4/heimdal/lib/krb5/addr_families.c tmp = realloc(dest->val, (dest->len + source->len) * sizeof(*tmp));
tmp 1375 source4/heimdal/lib/krb5/addr_families.c if(tmp == NULL) {
tmp 1380 source4/heimdal/lib/krb5/addr_families.c dest->val = tmp;
tmp 316 source4/heimdal/lib/krb5/cache.c char *tmp, *tmp2, *append;
tmp 321 source4/heimdal/lib/krb5/cache.c tmp = strstr(str, "%{");
tmp 322 source4/heimdal/lib/krb5/cache.c if (tmp && tmp != str) {
tmp 323 source4/heimdal/lib/krb5/cache.c append = malloc((tmp - str) + 1);
tmp 325 source4/heimdal/lib/krb5/cache.c memcpy(append, str, tmp - str);
tmp 326 source4/heimdal/lib/krb5/cache.c append[tmp - str] = '\0';
tmp 328 source4/heimdal/lib/krb5/cache.c str = tmp;
tmp 329 source4/heimdal/lib/krb5/cache.c } else if (tmp) {
tmp 330 source4/heimdal/lib/krb5/cache.c tmp2 = strchr(tmp, '}');
tmp 338 source4/heimdal/lib/krb5/cache.c if (strncasecmp(tmp, "%{uid}", 6) == 0)
tmp 340 source4/heimdal/lib/krb5/cache.c else if (strncasecmp(tmp, "%{null}", 7) == 0)
tmp 349 source4/heimdal/lib/krb5/cache.c (int)(tmp2 - tmp) - 2, tmp + 2);
tmp 366 source4/heimdal/lib/krb5/cache.c tmp = realloc(*res, len + tlen + 1);
tmp 367 source4/heimdal/lib/krb5/cache.c if (tmp == NULL) {
tmp 375 source4/heimdal/lib/krb5/cache.c *res = tmp;
tmp 125 source4/heimdal/lib/krb5/config_file.c krb5_config_section *tmp;
tmp 133 source4/heimdal/lib/krb5/config_file.c tmp = get_entry(parent, p + 1, krb5_config_list);
tmp 134 source4/heimdal/lib/krb5/config_file.c if(tmp == NULL) {
tmp 138 source4/heimdal/lib/krb5/config_file.c *s = tmp;
tmp 191 source4/heimdal/lib/krb5/config_file.c krb5_config_binding *tmp;
tmp 214 source4/heimdal/lib/krb5/config_file.c tmp = get_entry(parent, p1, krb5_config_list);
tmp 215 source4/heimdal/lib/krb5/config_file.c if (tmp == NULL) {
tmp 219 source4/heimdal/lib/krb5/config_file.c ret = parse_list (f, lineno, &tmp->u.list, error_message);
tmp 221 source4/heimdal/lib/krb5/config_file.c tmp = get_entry(parent, p1, krb5_config_string);
tmp 222 source4/heimdal/lib/krb5/config_file.c if (tmp == NULL) {
tmp 231 source4/heimdal/lib/krb5/config_file.c tmp->u.string = strdup(p1);
tmp 233 source4/heimdal/lib/krb5/config_file.c *b = tmp;
tmp 592 source4/heimdal/lib/krb5/config_file.c char *tmp = strdup(p);
tmp 595 source4/heimdal/lib/krb5/config_file.c if(tmp == NULL)
tmp 597 source4/heimdal/lib/krb5/config_file.c s = strtok_r(tmp, " \t", &pos);
tmp 609 source4/heimdal/lib/krb5/config_file.c free(tmp);
tmp 612 source4/heimdal/lib/krb5/config_file.c char **tmp = realloc(strings, (nstr + 1) * sizeof(*strings));
tmp 613 source4/heimdal/lib/krb5/config_file.c if(tmp == NULL)
tmp 615 source4/heimdal/lib/krb5/config_file.c strings = tmp;
tmp 123 source4/heimdal/lib/krb5/context.c const char * tmp;
tmp 145 source4/heimdal/lib/krb5/context.c tmp = NULL;
tmp 147 source4/heimdal/lib/krb5/context.c tmp = getenv("KRB5_KTNAME");
tmp 148 source4/heimdal/lib/krb5/context.c if(tmp != NULL)
tmp 149 source4/heimdal/lib/krb5/context.c context->default_keytab = tmp;
tmp 169 source4/heimdal/lib/krb5/context.c tmp = krb5_config_get_string(context, NULL, "libdefaults",
tmp 171 source4/heimdal/lib/krb5/context.c if(tmp)
tmp 172 source4/heimdal/lib/krb5/context.c roken_gethostby_setup(context->http_proxy, tmp);
tmp 480 source4/heimdal/lib/krb5/context.c krb5_config_binding *tmp = NULL;
tmp 482 source4/heimdal/lib/krb5/context.c ret = krb5_config_parse_file_multi(context, *filenames, &tmp);
tmp 484 source4/heimdal/lib/krb5/context.c krb5_config_file_free(context, tmp);
tmp 492 source4/heimdal/lib/krb5/context.c if(tmp == NULL)
tmp 496 source4/heimdal/lib/krb5/context.c context->cf = tmp;
tmp 69 source4/heimdal/lib/krb5/convert_creds.c int32_t tmp;
tmp 103 source4/heimdal/lib/krb5/convert_creds.c krb5_ret_int32(sp, &tmp);
tmp 104 source4/heimdal/lib/krb5/convert_creds.c ret = tmp;
tmp 107 source4/heimdal/lib/krb5/convert_creds.c ret = krb5_ret_int32(sp, &tmp);
tmp 110 source4/heimdal/lib/krb5/convert_creds.c v4creds->kvno = tmp;
tmp 289 source4/heimdal/lib/krb5/crypto.c DES_cblock tmp;
tmp 291 source4/heimdal/lib/krb5/crypto.c krb5_DES_AFS3_Transarc_string_to_key(password, salt.saltvalue, &tmp);
tmp 293 source4/heimdal/lib/krb5/crypto.c krb5_DES_AFS3_CMU_string_to_key(password, salt.saltvalue, &tmp);
tmp 295 source4/heimdal/lib/krb5/crypto.c krb5_data_copy(&key->keyvalue, tmp, sizeof(tmp));
tmp 315 source4/heimdal/lib/krb5/crypto.c unsigned char tmp = data[i];
tmp 317 source4/heimdal/lib/krb5/crypto.c *p++ ^= (tmp << 1);
tmp 319 source4/heimdal/lib/krb5/crypto.c *--p ^= (swap[tmp & 0xf] << 4) | swap[(tmp & 0xf0) >> 4];
tmp 344 source4/heimdal/lib/krb5/crypto.c DES_cblock tmp;
tmp 364 source4/heimdal/lib/krb5/crypto.c DES_string_to_key_int(s, len, &tmp);
tmp 366 source4/heimdal/lib/krb5/crypto.c krb5_data_copy(&key->keyvalue, tmp, sizeof(tmp));
tmp 367 source4/heimdal/lib/krb5/crypto.c memset(&tmp, 0, sizeof(tmp));
tmp 435 source4/heimdal/lib/krb5/crypto.c unsigned char tmp[24];
tmp 452 source4/heimdal/lib/krb5/crypto.c ret = _krb5_n_fold(str, len, tmp, 24);
tmp 461 source4/heimdal/lib/krb5/crypto.c memcpy(keys + i, tmp + i * 8, sizeof(keys[i]));
tmp 468 source4/heimdal/lib/krb5/crypto.c DES_ede3_cbc_encrypt(tmp,
tmp 469 source4/heimdal/lib/krb5/crypto.c tmp, sizeof(tmp),
tmp 474 source4/heimdal/lib/krb5/crypto.c memcpy(keys + i, tmp + i * 8, sizeof(keys[i]));
tmp 479 source4/heimdal/lib/krb5/crypto.c memset(tmp, 0, sizeof(tmp));
tmp 1272 source4/heimdal/lib/krb5/crypto.c unsigned char tmp[24];
tmp 1285 source4/heimdal/lib/krb5/crypto.c EVP_Cipher(&ctx->dctx, tmp, C->checksum.data, 24);
tmp 1288 source4/heimdal/lib/krb5/crypto.c EVP_DigestUpdate(m, tmp, 8); /* confounder */
tmp 1292 source4/heimdal/lib/krb5/crypto.c if(memcmp(res, tmp + 8, sizeof(res)) != 0) {
tmp 1296 source4/heimdal/lib/krb5/crypto.c memset(tmp, 0, sizeof(tmp));
tmp 1526 source4/heimdal/lib/krb5/crypto.c unsigned char tmp[16];
tmp 1551 source4/heimdal/lib/krb5/crypto.c EVP_DigestFinal_ex (m, tmp, NULL);
tmp 1554 source4/heimdal/lib/krb5/crypto.c ret = hmac(context, c, tmp, sizeof(tmp), 0, &ksign, result);
tmp 2912 source4/heimdal/lib/krb5/crypto.c char *tmp, *p;
tmp 2915 source4/heimdal/lib/krb5/crypto.c tmp = malloc (sz);
tmp 2916 source4/heimdal/lib/krb5/crypto.c if (tmp == NULL) {
tmp 2920 source4/heimdal/lib/krb5/crypto.c p = tmp;
tmp 2926 source4/heimdal/lib/krb5/crypto.c ret = (*et->encrypt)(context, &crypto->key, tmp, sz, TRUE, usage, ivec);
tmp 2928 source4/heimdal/lib/krb5/crypto.c memset(tmp, 0, sz);
tmp 2929 source4/heimdal/lib/krb5/crypto.c free(tmp);
tmp 2932 source4/heimdal/lib/krb5/crypto.c result->data = tmp;
tmp 4122 source4/heimdal/lib/krb5/crypto.c u_char *tmp;
tmp 4144 source4/heimdal/lib/krb5/crypto.c tmp = malloc (keylen);
tmp 4145 source4/heimdal/lib/krb5/crypto.c if(tmp == NULL) {
tmp 4150 source4/heimdal/lib/krb5/crypto.c ret = _krb5_n_fold(str, len, tmp, keylen);
tmp 4152 source4/heimdal/lib/krb5/crypto.c free(tmp);
tmp 4157 source4/heimdal/lib/krb5/crypto.c DES3_postproc (context, tmp, keylen, &kd); /* XXX */
tmp 4158 source4/heimdal/lib/krb5/crypto.c memset(tmp, 0, keylen);
tmp 4159 source4/heimdal/lib/krb5/crypto.c free(tmp);
tmp 139 source4/heimdal/lib/krb5/data.c void *tmp;
tmp 140 source4/heimdal/lib/krb5/data.c tmp = realloc(p->data, len);
tmp 141 source4/heimdal/lib/krb5/data.c if(len && !tmp)
tmp 143 source4/heimdal/lib/krb5/data.c p->data = tmp;
tmp 219 source4/heimdal/lib/krb5/fcache.c ssize_t tmp = write(fd, buf, min(sizeof(buf), pos));
tmp 221 source4/heimdal/lib/krb5/fcache.c if (tmp < 0)
tmp 223 source4/heimdal/lib/krb5/fcache.c pos -= tmp;
tmp 715 source4/heimdal/lib/krb5/get_cred.c krb5_creds **tmp = *tgts;
tmp 717 source4/heimdal/lib/krb5/get_cred.c for(i = 0; tmp && tmp[i]; i++); /* XXX */
tmp 718 source4/heimdal/lib/krb5/get_cred.c tmp = realloc(tmp, (i+2)*sizeof(*tmp));
tmp 719 source4/heimdal/lib/krb5/get_cred.c if(tmp == NULL) {
tmp 724 source4/heimdal/lib/krb5/get_cred.c *tgts = tmp;
tmp 725 source4/heimdal/lib/krb5/get_cred.c ret = krb5_copy_creds(context, tkt, &tmp[i]);
tmp 726 source4/heimdal/lib/krb5/get_cred.c tmp[i+1] = NULL;
tmp 45 source4/heimdal/lib/krb5/get_for_creds.c void *tmp;
tmp 52 source4/heimdal/lib/krb5/get_for_creds.c tmp = realloc(addr->val, (addr->len + n) * sizeof(*addr->val));
tmp 53 source4/heimdal/lib/krb5/get_for_creds.c if (tmp == NULL && (addr->len + n) != 0) {
tmp 58 source4/heimdal/lib/krb5/get_for_creds.c addr->val = tmp;
tmp 76 source4/heimdal/lib/krb5/get_host_realm.c char *tmp;
tmp 78 source4/heimdal/lib/krb5/get_host_realm.c tmp = strdup(rr->u.txt);
tmp 79 source4/heimdal/lib/krb5/get_host_realm.c if (tmp == NULL) {
tmp 85 source4/heimdal/lib/krb5/get_host_realm.c (*realms)[i] = tmp;
tmp 145 source4/heimdal/lib/krb5/get_host_realm.c char **tmp = krb5_config_get_strings (context, NULL,
tmp 150 source4/heimdal/lib/krb5/get_host_realm.c if (tmp == NULL)
tmp 152 source4/heimdal/lib/krb5/get_host_realm.c *realms = tmp;
tmp 46 source4/heimdal/lib/krb5/get_in_tkt.c krb5_enctype *tmp = NULL;
tmp 51 source4/heimdal/lib/krb5/get_in_tkt.c &tmp);
tmp 54 source4/heimdal/lib/krb5/get_in_tkt.c etypes = tmp;
tmp 68 source4/heimdal/lib/krb5/get_in_tkt.c i * sizeof(*tmp));
tmp 70 source4/heimdal/lib/krb5/get_in_tkt.c if (tmp != NULL)
tmp 71 source4/heimdal/lib/krb5/get_in_tkt.c free (tmp);
tmp 135 source4/heimdal/lib/krb5/init_creds_pw.c int tmp;
tmp 157 source4/heimdal/lib/krb5/init_creds_pw.c tmp = options->tkt_life;
tmp 159 source4/heimdal/lib/krb5/init_creds_pw.c tmp = 10 * 60 * 60;
tmp 160 source4/heimdal/lib/krb5/init_creds_pw.c cred->times.endtime = now + tmp;
tmp 615 source4/heimdal/lib/krb5/kcm.c int32_t tmp;
tmp 633 source4/heimdal/lib/krb5/kcm.c ret = krb5_ret_int32(response, &tmp);
tmp 634 source4/heimdal/lib/krb5/kcm.c if (ret || tmp < 0)
tmp 644 source4/heimdal/lib/krb5/kcm.c *cursor = malloc(sizeof(tmp));
tmp 648 source4/heimdal/lib/krb5/kcm.c KCMCURSOR(*cursor) = tmp;
tmp 47 source4/heimdal/lib/krb5/keytab.c struct krb5_keytab_data *tmp;
tmp 55 source4/heimdal/lib/krb5/keytab.c tmp = realloc(context->kt_types,
tmp 57 source4/heimdal/lib/krb5/keytab.c if(tmp == NULL) {
tmp 61 source4/heimdal/lib/krb5/keytab.c memcpy(&tmp[context->num_kt_types], ops,
tmp 62 source4/heimdal/lib/krb5/keytab.c sizeof(tmp[context->num_kt_types]));
tmp 63 source4/heimdal/lib/krb5/keytab.c context->kt_types = tmp;
tmp 333 source4/heimdal/lib/krb5/keytab.c krb5_keytab_entry tmp;
tmp 349 source4/heimdal/lib/krb5/keytab.c while (krb5_kt_next_entry(context, id, &tmp, &cursor) == 0) {
tmp 350 source4/heimdal/lib/krb5/keytab.c if (krb5_kt_compare(context, &tmp, principal, 0, enctype)) {
tmp 353 source4/heimdal/lib/krb5/keytab.c if (kvno == tmp.vno
tmp 354 source4/heimdal/lib/krb5/keytab.c || (tmp.vno < 256 && kvno % 256 == tmp.vno)) {
tmp 355 source4/heimdal/lib/krb5/keytab.c krb5_kt_copy_entry_contents (context, &tmp, entry);
tmp 356 source4/heimdal/lib/krb5/keytab.c krb5_kt_free_entry (context, &tmp);
tmp 359 source4/heimdal/lib/krb5/keytab.c } else if (kvno == 0 && tmp.vno > entry->vno) {
tmp 362 source4/heimdal/lib/krb5/keytab.c krb5_kt_copy_entry_contents (context, &tmp, entry);
tmp 365 source4/heimdal/lib/krb5/keytab.c krb5_kt_free_entry(context, &tmp);
tmp 139 source4/heimdal/lib/krb5/keytab_file.c int16_t tmp;
tmp 141 source4/heimdal/lib/krb5/keytab_file.c ret = krb5_ret_int16(sp, &tmp); /* keytype + etype */
tmp 148 source4/heimdal/lib/krb5/keytab_file.c p->keytype = tmp;
tmp 178 source4/heimdal/lib/krb5/keytab_memory.c krb5_keytab_entry *tmp;
tmp 179 source4/heimdal/lib/krb5/keytab_memory.c tmp = realloc(d->entries, (d->num_entries + 1) * sizeof(*d->entries));
tmp 180 source4/heimdal/lib/krb5/keytab_memory.c if(tmp == NULL) {
tmp 185 source4/heimdal/lib/krb5/keytab_memory.c d->entries = tmp;
tmp 40 source4/heimdal/lib/krb5/n-fold.c unsigned char *tmp;
tmp 49 source4/heimdal/lib/krb5/n-fold.c tmp = malloc(bytes);
tmp 50 source4/heimdal/lib/krb5/n-fold.c if (tmp == NULL)
tmp 52 source4/heimdal/lib/krb5/n-fold.c memcpy(tmp, buf, bytes);
tmp 55 source4/heimdal/lib/krb5/n-fold.c tmp[bytes - 1] &= 0xff << (8 - lbit);
tmp 57 source4/heimdal/lib/krb5/n-fold.c tmp[bytes - 1] |= buf[0] >> i;
tmp 76 source4/heimdal/lib/krb5/n-fold.c buf[i] = (tmp[b1] << s1) | (tmp[b2] >> s2);
tmp 78 source4/heimdal/lib/krb5/n-fold.c free(tmp);
tmp 109 source4/heimdal/lib/krb5/n-fold.c unsigned char *tmp = malloc(maxlen);
tmp 112 source4/heimdal/lib/krb5/n-fold.c if (tmp == NULL || buf == NULL)
tmp 118 source4/heimdal/lib/krb5/n-fold.c memcpy(tmp + l, buf, len);
tmp 124 source4/heimdal/lib/krb5/n-fold.c add1(key, tmp, size);
tmp 128 source4/heimdal/lib/krb5/n-fold.c memmove(tmp, tmp + size, l);
tmp 134 source4/heimdal/lib/krb5/n-fold.c memset(tmp, 0, maxlen);
tmp 135 source4/heimdal/lib/krb5/n-fold.c free(tmp);
tmp 91 source4/heimdal/lib/krb5/pac.c uint32_t i, tmp, tmp2, header_end;
tmp 108 source4/heimdal/lib/krb5/pac.c CHECK(ret, krb5_ret_uint32(sp, &tmp), out);
tmp 110 source4/heimdal/lib/krb5/pac.c if (tmp < 1) {
tmp 124 source4/heimdal/lib/krb5/pac.c sizeof(*p->pac) + (sizeof(p->pac->buffers[0]) * (tmp - 1)));
tmp 131 source4/heimdal/lib/krb5/pac.c p->pac->numbuffers = tmp;
tmp 581 source4/heimdal/lib/krb5/principal.c heim_general_string *tmp;
tmp 584 source4/heimdal/lib/krb5/principal.c tmp = realloc(princ_comp(p), (len + 1) * sizeof(*tmp));
tmp 585 source4/heimdal/lib/krb5/principal.c if(tmp == NULL) {
tmp 590 source4/heimdal/lib/krb5/principal.c princ_comp(p) = tmp;
tmp 1240 source4/heimdal/lib/krb5/principal.c const char *tmp;
tmp 1241 source4/heimdal/lib/krb5/principal.c int t = name_convert(context, n, r, &tmp);
tmp 1244 source4/heimdal/lib/krb5/principal.c n = tmp;
tmp 134 source4/heimdal/lib/krb5/replay.c struct rc_entry tmp;
tmp 143 source4/heimdal/lib/krb5/replay.c tmp.stamp = auth_lifespan;
tmp 144 source4/heimdal/lib/krb5/replay.c fwrite(&tmp, 1, sizeof(tmp), f);
tmp 201 source4/heimdal/lib/krb5/replay.c struct rc_entry ent, tmp;
tmp 216 source4/heimdal/lib/krb5/replay.c fread(&tmp, sizeof(ent), 1, f);
tmp 217 source4/heimdal/lib/krb5/replay.c t = ent.stamp - tmp.stamp;
tmp 218 source4/heimdal/lib/krb5/replay.c while(fread(&tmp, sizeof(ent), 1, f)){
tmp 219 source4/heimdal/lib/krb5/replay.c if(tmp.stamp < t)
tmp 221 source4/heimdal/lib/krb5/replay.c if(memcmp(tmp.data, ent.data, sizeof(ent.data)) == 0){
tmp 294 source4/heimdal/lib/krb5/replay.c char *tmp = malloc(4 * piece->length + 1);
tmp 297 source4/heimdal/lib/krb5/replay.c if(tmp == NULL) {
tmp 302 source4/heimdal/lib/krb5/replay.c strvisx(tmp, piece->data, piece->length, VIS_WHITE | VIS_OCTAL);
tmp 304 source4/heimdal/lib/krb5/replay.c asprintf(&name, "FILE:rc_%s_%u", tmp, (unsigned)geteuid());
tmp 306 source4/heimdal/lib/krb5/replay.c asprintf(&name, "FILE:rc_%s", tmp);
tmp 308 source4/heimdal/lib/krb5/replay.c free(tmp);
tmp 81 source4/heimdal/lib/krb5/send_to_kdc.c void *tmp;
tmp 93 source4/heimdal/lib/krb5/send_to_kdc.c tmp = realloc (rep->data, rep->length + nbytes);
tmp 94 source4/heimdal/lib/krb5/send_to_kdc.c if (tmp == NULL) {
tmp 98 source4/heimdal/lib/krb5/send_to_kdc.c rep->data = tmp;
tmp 99 source4/heimdal/lib/krb5/send_to_kdc.c ret = recv (fd, (char*)tmp + rep->length, nbytes, 0);
tmp 244 source4/heimdal/lib/krb5/send_to_kdc.c int tmp;
tmp 246 source4/heimdal/lib/krb5/send_to_kdc.c sscanf (s, "%d", &tmp);
tmp 247 source4/heimdal/lib/krb5/send_to_kdc.c return htons(tmp);
tmp 420 source4/heimdal/lib/krb5/store.c char *tmp;
tmp 423 source4/heimdal/lib/krb5/store.c tmp = realloc (s, len);
tmp 424 source4/heimdal/lib/krb5/store.c if (tmp == NULL) {
tmp 428 source4/heimdal/lib/krb5/store.c s = tmp;
tmp 479 source4/heimdal/lib/krb5/store.c char *tmp;
tmp 491 source4/heimdal/lib/krb5/store.c tmp = realloc (s, len);
tmp 492 source4/heimdal/lib/krb5/store.c if (tmp == NULL) {
tmp 496 source4/heimdal/lib/krb5/store.c s = tmp;
tmp 619 source4/heimdal/lib/krb5/store.c int16_t tmp;
tmp 621 source4/heimdal/lib/krb5/store.c ret = krb5_ret_int16(sp, &tmp);
tmp 623 source4/heimdal/lib/krb5/store.c p->keytype = tmp;
tmp 626 source4/heimdal/lib/krb5/store.c ret = krb5_ret_int16(sp, &tmp);
tmp 652 source4/heimdal/lib/krb5/store.c int32_t tmp;
tmp 653 source4/heimdal/lib/krb5/store.c ret = krb5_ret_int32(sp, &tmp);
tmp 654 source4/heimdal/lib/krb5/store.c times->authtime = tmp;
tmp 656 source4/heimdal/lib/krb5/store.c ret = krb5_ret_int32(sp, &tmp);
tmp 657 source4/heimdal/lib/krb5/store.c times->starttime = tmp;
tmp 659 source4/heimdal/lib/krb5/store.c ret = krb5_ret_int32(sp, &tmp);
tmp 660 source4/heimdal/lib/krb5/store.c times->endtime = tmp;
tmp 662 source4/heimdal/lib/krb5/store.c ret = krb5_ret_int32(sp, &tmp);
tmp 663 source4/heimdal/lib/krb5/store.c times->renew_till = tmp;
tmp 708 source4/heimdal/lib/krb5/store.c int32_t tmp;
tmp 710 source4/heimdal/lib/krb5/store.c ret = krb5_ret_int32(sp, &tmp);
tmp 712 source4/heimdal/lib/krb5/store.c adr->len = tmp;
tmp 743 source4/heimdal/lib/krb5/store.c int32_t tmp;
tmp 746 source4/heimdal/lib/krb5/store.c ret = krb5_ret_int32(sp, &tmp);
tmp 748 source4/heimdal/lib/krb5/store.c ALLOC_SEQ(auth, tmp);
tmp 749 source4/heimdal/lib/krb5/store.c if (auth->val == NULL && tmp != 0)
tmp 751 source4/heimdal/lib/krb5/store.c for(i = 0; i < tmp; i++){
tmp 55 source4/heimdal/lib/krb5/ticket.c krb5_ticket *tmp;
tmp 58 source4/heimdal/lib/krb5/ticket.c tmp = malloc(sizeof(*tmp));
tmp 59 source4/heimdal/lib/krb5/ticket.c if(tmp == NULL) {
tmp 64 source4/heimdal/lib/krb5/ticket.c if((ret = copy_EncTicketPart(&from->ticket, &tmp->ticket))){
tmp 65 source4/heimdal/lib/krb5/ticket.c free(tmp);
tmp 68 source4/heimdal/lib/krb5/ticket.c ret = krb5_copy_principal(context, from->client, &tmp->client);
tmp 70 source4/heimdal/lib/krb5/ticket.c free_EncTicketPart(&tmp->ticket);
tmp 71 source4/heimdal/lib/krb5/ticket.c free(tmp);
tmp 74 source4/heimdal/lib/krb5/ticket.c ret = krb5_copy_principal(context, from->server, &tmp->server);
tmp 76 source4/heimdal/lib/krb5/ticket.c krb5_free_principal(context, tmp->client);
tmp 77 source4/heimdal/lib/krb5/ticket.c free_EncTicketPart(&tmp->ticket);
tmp 78 source4/heimdal/lib/krb5/ticket.c free(tmp);
tmp 81 source4/heimdal/lib/krb5/ticket.c *to = tmp;
tmp 69 source4/heimdal/lib/krb5/transited.c struct tr_realm *tmp;
tmp 89 source4/heimdal/lib/krb5/transited.c tmp = calloc(1, sizeof(*tmp));
tmp 90 source4/heimdal/lib/krb5/transited.c if(tmp == NULL){
tmp 95 source4/heimdal/lib/krb5/transited.c tmp->next = path;
tmp 96 source4/heimdal/lib/krb5/transited.c path = tmp;
tmp 115 source4/heimdal/lib/krb5/transited.c tmp = calloc(1, sizeof(*tmp));
tmp 116 source4/heimdal/lib/krb5/transited.c if(tmp == NULL){
tmp 121 source4/heimdal/lib/krb5/transited.c tmp->next = path;
tmp 122 source4/heimdal/lib/krb5/transited.c path = tmp;
tmp 182 source4/heimdal/lib/krb5/transited.c char *tmp;
tmp 190 source4/heimdal/lib/krb5/transited.c tmp = realloc(r->realm, len);
tmp 191 source4/heimdal/lib/krb5/transited.c if(tmp == NULL){
tmp 197 source4/heimdal/lib/krb5/transited.c r->realm = tmp;
tmp 202 source4/heimdal/lib/krb5/transited.c char *tmp;
tmp 205 source4/heimdal/lib/krb5/transited.c tmp = malloc(len);
tmp 206 source4/heimdal/lib/krb5/transited.c if(tmp == NULL){
tmp 212 source4/heimdal/lib/krb5/transited.c strlcpy(tmp, prev_realm, len);
tmp 213 source4/heimdal/lib/krb5/transited.c strlcat(tmp, r->realm, len);
tmp 215 source4/heimdal/lib/krb5/transited.c r->realm = tmp;
tmp 278 source4/heimdal/lib/krb5/transited.c char *tmp;
tmp 293 source4/heimdal/lib/krb5/transited.c tmp = malloc(tr + i - start + 1);
tmp 294 source4/heimdal/lib/krb5/transited.c if(tmp == NULL){
tmp 299 source4/heimdal/lib/krb5/transited.c memcpy(tmp, start, tr + i - start);
tmp 300 source4/heimdal/lib/krb5/transited.c tmp[tr + i - start] = '\0';
tmp 301 source4/heimdal/lib/krb5/transited.c r = make_realm(tmp);
tmp 312 source4/heimdal/lib/krb5/transited.c tmp = malloc(tr + i - start + 1);
tmp 313 source4/heimdal/lib/krb5/transited.c if(tmp == NULL){
tmp 319 source4/heimdal/lib/krb5/transited.c memcpy(tmp, start, tr + i - start);
tmp 320 source4/heimdal/lib/krb5/transited.c tmp[tr + i - start] = '\0';
tmp 321 source4/heimdal/lib/krb5/transited.c r = make_realm(tmp);
tmp 51 source4/heimdal/lib/roken/ecalloc.c void *tmp = calloc (number, size);
tmp 53 source4/heimdal/lib/roken/ecalloc.c if (tmp == NULL && number * size != 0)
tmp 55 source4/heimdal/lib/roken/ecalloc.c return tmp;
tmp 51 source4/heimdal/lib/roken/emalloc.c void *tmp = malloc (sz);
tmp 53 source4/heimdal/lib/roken/emalloc.c if (tmp == NULL && sz != 0)
tmp 55 source4/heimdal/lib/roken/emalloc.c return tmp;
tmp 51 source4/heimdal/lib/roken/erealloc.c void *tmp = realloc (ptr, sz);
tmp 53 source4/heimdal/lib/roken/erealloc.c if (tmp == NULL && sz != 0)
tmp 55 source4/heimdal/lib/roken/erealloc.c return tmp;
tmp 51 source4/heimdal/lib/roken/estrdup.c char *tmp = strdup (str);
tmp 53 source4/heimdal/lib/roken/estrdup.c if (tmp == NULL)
tmp 55 source4/heimdal/lib/roken/estrdup.c return tmp;
tmp 246 source4/heimdal/lib/roken/getaddrinfo.c const char *tmp = hostent_find_fqdn (he2);
tmp 248 source4/heimdal/lib/roken/getaddrinfo.c if (strchr (tmp, '.') != NULL)
tmp 249 source4/heimdal/lib/roken/getaddrinfo.c tmp_canon = tmp;
tmp 417 source4/heimdal/lib/roken/getarg.c int tmp;
tmp 418 source4/heimdal/lib/roken/getarg.c if(sscanf(goptarg + 1, "%d", &tmp) != 1)
tmp 420 source4/heimdal/lib/roken/getarg.c *(int*)current->value = tmp;
tmp 466 source4/heimdal/lib/roken/getarg.c double tmp;
tmp 467 source4/heimdal/lib/roken/getarg.c if(sscanf(goptarg + 1, "%lf", &tmp) != 1)
tmp 469 source4/heimdal/lib/roken/getarg.c *(double*)current->value = tmp;
tmp 530 source4/heimdal/lib/roken/getarg.c int tmp;
tmp 531 source4/heimdal/lib/roken/getarg.c if(sscanf(goptarg, "%d", &tmp) != 1)
tmp 533 source4/heimdal/lib/roken/getarg.c *(int*)args[k].value = tmp;
tmp 541 source4/heimdal/lib/roken/getarg.c double tmp;
tmp 542 source4/heimdal/lib/roken/getarg.c if(sscanf(goptarg, "%lf", &tmp) != 1)
tmp 544 source4/heimdal/lib/roken/getarg.c *(double*)args[k].value = tmp;
tmp 49 source4/heimdal/lib/roken/getipnodebyaddr.c struct hostent *tmp;
tmp 51 source4/heimdal/lib/roken/getipnodebyaddr.c tmp = gethostbyaddr (src, len, af);
tmp 52 source4/heimdal/lib/roken/getipnodebyaddr.c if (tmp == NULL) {
tmp 68 source4/heimdal/lib/roken/getipnodebyaddr.c tmp = copyhostent (tmp);
tmp 69 source4/heimdal/lib/roken/getipnodebyaddr.c if (tmp == NULL) {
tmp 73 source4/heimdal/lib/roken/getipnodebyaddr.c return tmp;
tmp 53 source4/heimdal/lib/roken/getipnodebyname.c struct hostent *tmp;
tmp 56 source4/heimdal/lib/roken/getipnodebyname.c tmp = gethostbyname2 (name, af);
tmp 62 source4/heimdal/lib/roken/getipnodebyname.c tmp = gethostbyname (name);
tmp 64 source4/heimdal/lib/roken/getipnodebyname.c if (tmp == NULL) {
tmp 80 source4/heimdal/lib/roken/getipnodebyname.c tmp = copyhostent (tmp);
tmp 81 source4/heimdal/lib/roken/getipnodebyname.c if (tmp == NULL) {
tmp 85 source4/heimdal/lib/roken/getipnodebyname.c return tmp;
tmp 200 source4/heimdal/lib/roken/parse_units.c int ret = 0, tmp;
tmp 211 source4/heimdal/lib/roken/parse_units.c tmp = (*print) (s, len, divisor, u->name, num);
tmp 212 source4/heimdal/lib/roken/parse_units.c if (tmp < 0)
tmp 213 source4/heimdal/lib/roken/parse_units.c return tmp;
tmp 214 source4/heimdal/lib/roken/parse_units.c if (tmp > len) {
tmp 218 source4/heimdal/lib/roken/parse_units.c len -= tmp;
tmp 219 source4/heimdal/lib/roken/parse_units.c s += tmp;
tmp 221 source4/heimdal/lib/roken/parse_units.c ret += tmp;
tmp 119 source4/heimdal/lib/roken/resolve.c struct resource_record *tmp = rr;
tmp 121 source4/heimdal/lib/roken/resolve.c dns_free_rr(tmp);
tmp 128 source4/heimdal/lib/roken/rtbl.c struct column_data *col, **tmp;
tmp 130 source4/heimdal/lib/roken/rtbl.c tmp = realloc (table->columns, (table->num_columns + 1) * sizeof (*tmp));
tmp 131 source4/heimdal/lib/roken/rtbl.c if (tmp == NULL)
tmp 133 source4/heimdal/lib/roken/rtbl.c table->columns = tmp;
tmp 168 source4/heimdal/lib/roken/rtbl.c struct column_entry *tmp;
tmp 172 source4/heimdal/lib/roken/rtbl.c tmp = realloc(table->columns[c]->rows,
tmp 174 source4/heimdal/lib/roken/rtbl.c if(tmp == NULL)
tmp 176 source4/heimdal/lib/roken/rtbl.c table->columns[c]->rows = tmp;
tmp 178 source4/heimdal/lib/roken/rtbl.c if((tmp[table->columns[c]->num_rows++].data = strdup("")) == NULL)
tmp 291 source4/heimdal/lib/roken/rtbl.c struct column_entry row, *tmp;
tmp 296 source4/heimdal/lib/roken/rtbl.c tmp = realloc (c->rows, (c->num_rows + 1) * sizeof (*tmp));
tmp 297 source4/heimdal/lib/roken/rtbl.c if (tmp == NULL) {
tmp 301 source4/heimdal/lib/roken/rtbl.c c->rows = tmp;
tmp 53 source4/heimdal/lib/roken/strcollect.c char **tmp = realloc(argv, (argc + increment) * sizeof(*argv));
tmp 54 source4/heimdal/lib/roken/strcollect.c if(tmp == NULL) {
tmp 59 source4/heimdal/lib/roken/strcollect.c argv = tmp;
tmp 48 source4/heimdal/lib/wind/ldap.c _wind_ldap_case_exact_attribute(const uint32_t *tmp,
tmp 62 source4/heimdal/lib/wind/ldap.c while(i < olen && tmp[i] == 0x20) /* skip initial spaces */
tmp 66 source4/heimdal/lib/wind/ldap.c if (tmp[i] == 0x20) {
tmp 70 source4/heimdal/lib/wind/ldap.c while(i < olen && tmp[i] == 0x20) /* skip middle spaces */
tmp 73 source4/heimdal/lib/wind/ldap.c if (put_char(out, &o, tmp[i++], *out_len))
tmp 176 source4/heimdal/lib/wind/normalize.c canonical_reorder(uint32_t *tmp, size_t tmp_len)
tmp 181 source4/heimdal/lib/wind/normalize.c int cc = _wind_combining_class(tmp[i]);
tmp 185 source4/heimdal/lib/wind/normalize.c j < tmp_len && _wind_combining_class(tmp[j]);
tmp 188 source4/heimdal/lib/wind/normalize.c qsort(&tmp[i], j - i, sizeof(unsigned),
tmp 282 source4/heimdal/lib/wind/normalize.c uint32_t *tmp;
tmp 288 source4/heimdal/lib/wind/normalize.c tmp = malloc(tmp_len * sizeof(uint32_t));
tmp 289 source4/heimdal/lib/wind/normalize.c if (tmp == NULL)
tmp 292 source4/heimdal/lib/wind/normalize.c ret = compat_decomp(in, in_len, tmp, &tmp_len);
tmp 294 source4/heimdal/lib/wind/normalize.c free(tmp);
tmp 297 source4/heimdal/lib/wind/normalize.c canonical_reorder(tmp, tmp_len);
tmp 298 source4/heimdal/lib/wind/normalize.c ret = combine(tmp, tmp_len, out, out_len);
tmp 299 source4/heimdal/lib/wind/normalize.c free(tmp);
tmp 63 source4/heimdal/lib/wind/stringprep.c uint32_t *tmp = malloc(tmp_len * sizeof(uint32_t));
tmp 67 source4/heimdal/lib/wind/stringprep.c if (tmp == NULL)
tmp 70 source4/heimdal/lib/wind/stringprep.c ret = _wind_stringprep_map(in, in_len, tmp, &tmp_len, flags);
tmp 72 source4/heimdal/lib/wind/stringprep.c free(tmp);
tmp 77 source4/heimdal/lib/wind/stringprep.c ret = _wind_stringprep_normalize(tmp, tmp_len, tmp, &olen);
tmp 79 source4/heimdal/lib/wind/stringprep.c free(tmp);
tmp 82 source4/heimdal/lib/wind/stringprep.c ret = _wind_stringprep_prohibited(tmp, olen, flags);
tmp 84 source4/heimdal/lib/wind/stringprep.c free(tmp);
tmp 87 source4/heimdal/lib/wind/stringprep.c ret = _wind_stringprep_testbidi(tmp, olen, flags);
tmp 89 source4/heimdal/lib/wind/stringprep.c free(tmp);
tmp 95 source4/heimdal/lib/wind/stringprep.c ret = _wind_ldap_case_exact_attribute(tmp, olen, out, out_len);
tmp 102 source4/heimdal/lib/wind/stringprep.c memcpy(out, tmp, sizeof(out[0]) * olen);
tmp 105 source4/heimdal/lib/wind/stringprep.c free(tmp);
tmp 85 source4/kdc/hdb-samba4.c const char *tmp;
tmp 93 source4/kdc/hdb-samba4.c tmp = strptime(gentime, "%Y%m%d%H%M%SZ", &tm);
tmp 94 source4/kdc/hdb-samba4.c if (tmp == NULL) {
tmp 69 source4/lib/ldb/include/dlinklist.h type tmp; \
tmp 70 source4/lib/ldb/include/dlinklist.h for (tmp = (list); tmp->next; tmp = tmp->next) ; \
tmp 71 source4/lib/ldb/include/dlinklist.h tmp->next = (p); \
tmp 73 source4/lib/ldb/include/dlinklist.h (p)->prev = tmp; \
tmp 92 source4/lib/ldb/include/dlinklist.h #define DLIST_DEMOTE(list, p, tmp) \
tmp 95 source4/lib/ldb/include/dlinklist.h DLIST_ADD_END(list, p, tmp); \
tmp 105 source4/lib/ldb/include/dlinklist.h type tmp; \
tmp 106 source4/lib/ldb/include/dlinklist.h for (tmp = (list1); tmp->next; tmp = tmp->next) ; \
tmp 107 source4/lib/ldb/include/dlinklist.h tmp->next = (list2); \
tmp 109 source4/lib/ldb/include/dlinklist.h (list2)->prev = tmp; \
tmp 255 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c char *child, *tmp;
tmp 265 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c tmp = parsetree_to_sql(module, mem_ctx, t->u.list.elements[0]);
tmp 266 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c if (tmp == NULL) return NULL;
tmp 273 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c tmp = talloc_asprintf_append(tmp, " INTERSECT %s ", child);
tmp 274 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c if (tmp == NULL) return NULL;
tmp 277 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c ret = talloc_asprintf(mem_ctx, "SELECT * FROM ( %s )\n", tmp);
tmp 283 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c tmp = parsetree_to_sql(module, mem_ctx, t->u.list.elements[0]);
tmp 284 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c if (tmp == NULL) return NULL;
tmp 291 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c tmp = talloc_asprintf_append(tmp, " UNION %s ", child);
tmp 292 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c if (tmp == NULL) return NULL;
tmp 295 source4/lib/ldb/ldb_sqlite3/ldb_sqlite3.c return talloc_asprintf(mem_ctx, "SELECT * FROM ( %s ) ", tmp);
tmp 109 source4/lib/ldb/ldb_tdb/ldb_index.c struct ldb_index_pointer *tmp = ptr;
tmp 111 source4/lib/ldb/ldb_tdb/ldb_index.c talloc_free(tmp);
tmp 122 source4/lib/ldb/ldb_tdb/ldb_index.c struct ldb_index_pointer *ptr, *tmp;
tmp 141 source4/lib/ldb/ldb_tdb/ldb_index.c for (i=0, tmp = ptr; tmp; tmp=tmp->next) {
tmp 154 source4/lib/ldb/ldb_tdb/ldb_index.c for (i=0, tmp = ptr; tmp; tmp=tmp->next, i++) {
tmp 155 source4/lib/ldb/ldb_tdb/ldb_index.c el->values[i].length = tmp->value.length;
tmp 158 source4/lib/ldb/ldb_tdb/ldb_index.c el->values[i].data = talloc_size(el->values, tmp->value.length+1);
tmp 162 source4/lib/ldb/ldb_tdb/ldb_index.c memcpy(el->values[i].data, tmp->value.data, tmp->value.length);
tmp 163 source4/lib/ldb/ldb_tdb/ldb_index.c el->values[i].data[tmp->value.length] = 0;
tmp 176 source4/lib/ldb/ldb_tdb/ldb_index.c struct ldb_index_pointer *ptr, *tmp;
tmp 185 source4/lib/ldb/ldb_tdb/ldb_index.c tmp = talloc(ltdb->idxptr, struct ldb_index_pointer);
tmp 186 source4/lib/ldb/ldb_tdb/ldb_index.c if (tmp == NULL) {
tmp 189 source4/lib/ldb/ldb_tdb/ldb_index.c tmp->value = el->values[i];
tmp 190 source4/lib/ldb/ldb_tdb/ldb_index.c tmp->value.data = talloc_memdup(tmp, tmp->value.data, tmp->value.length);
tmp 191 source4/lib/ldb/ldb_tdb/ldb_index.c if (tmp->value.data == NULL) {
tmp 194 source4/lib/ldb/ldb_tdb/ldb_index.c DLIST_ADD(ptr, tmp);
tmp 84 source4/lib/ldb/nssldb/ldb-nss.c const char *tmp;
tmp 89 source4/lib/ldb/nssldb/ldb-nss.c tmp = ldb_msg_find_attr_as_string(msg, "uid", NULL);
tmp 90 source4/lib/ldb/nssldb/ldb-nss.c if (tmp == NULL) {
tmp 95 source4/lib/ldb/nssldb/ldb-nss.c len = strlen(tmp)+1;
tmp 101 source4/lib/ldb/nssldb/ldb-nss.c memcpy(&buffer[bufpos], tmp, len);
tmp 106 source4/lib/ldb/nssldb/ldb-nss.c tmp = ldb_msg_find_attr_as_string(msg, "userPassword", NULL);
tmp 107 source4/lib/ldb/nssldb/ldb-nss.c if (tmp == NULL) {
tmp 108 source4/lib/ldb/nssldb/ldb-nss.c tmp = "LDB";
tmp 110 source4/lib/ldb/nssldb/ldb-nss.c len = strlen(tmp)+1;
tmp 116 source4/lib/ldb/nssldb/ldb-nss.c memcpy(&buffer[bufpos], tmp, len);
tmp 136 source4/lib/ldb/nssldb/ldb-nss.c tmp = ldb_msg_find_attr_as_string(msg, "gecos", NULL);
tmp 137 source4/lib/ldb/nssldb/ldb-nss.c if (tmp == NULL) {
tmp 138 source4/lib/ldb/nssldb/ldb-nss.c tmp = "";
tmp 140 source4/lib/ldb/nssldb/ldb-nss.c len = strlen(tmp)+1;
tmp 146 source4/lib/ldb/nssldb/ldb-nss.c memcpy(&buffer[bufpos], tmp, len);
tmp 151 source4/lib/ldb/nssldb/ldb-nss.c tmp = ldb_msg_find_attr_as_string(msg, "homeDirectory", NULL);
tmp 152 source4/lib/ldb/nssldb/ldb-nss.c if (tmp == NULL) {
tmp 153 source4/lib/ldb/nssldb/ldb-nss.c tmp = "";
tmp 155 source4/lib/ldb/nssldb/ldb-nss.c len = strlen(tmp)+1;
tmp 161 source4/lib/ldb/nssldb/ldb-nss.c memcpy(&buffer[bufpos], tmp, len);
tmp 166 source4/lib/ldb/nssldb/ldb-nss.c tmp = ldb_msg_find_attr_as_string(msg, "loginShell", NULL);
tmp 167 source4/lib/ldb/nssldb/ldb-nss.c if (tmp == NULL) {
tmp 168 source4/lib/ldb/nssldb/ldb-nss.c tmp = "";
tmp 170 source4/lib/ldb/nssldb/ldb-nss.c len = strlen(tmp)+1;
tmp 176 source4/lib/ldb/nssldb/ldb-nss.c memcpy(&buffer[bufpos], tmp, len);
tmp 190 source4/lib/ldb/nssldb/ldb-nss.c const char *tmp;
tmp 199 source4/lib/ldb/nssldb/ldb-nss.c tmp = ldb_msg_find_attr_as_string(group, "cn", NULL);
tmp 200 source4/lib/ldb/nssldb/ldb-nss.c if (tmp == NULL) {
tmp 205 source4/lib/ldb/nssldb/ldb-nss.c len = strlen(tmp)+1;
tmp 211 source4/lib/ldb/nssldb/ldb-nss.c memcpy(&buffer[bufpos], tmp, len);
tmp 216 source4/lib/ldb/nssldb/ldb-nss.c tmp = ldb_msg_find_attr_as_string(group, "userPassword", NULL);
tmp 217 source4/lib/ldb/nssldb/ldb-nss.c if (tmp == NULL) {
tmp 218 source4/lib/ldb/nssldb/ldb-nss.c tmp = "LDB";
tmp 220 source4/lib/ldb/nssldb/ldb-nss.c len = strlen(tmp)+1;
tmp 226 source4/lib/ldb/nssldb/ldb-nss.c memcpy(&buffer[bufpos], tmp, len);
tmp 252 source4/lib/ldb/nssldb/ldb-nss.c tmp = ldb_msg_find_attr_as_string(members->msgs[i], "uid", NULL);
tmp 253 source4/lib/ldb/nssldb/ldb-nss.c if (tmp == NULL) {
tmp 258 source4/lib/ldb/nssldb/ldb-nss.c len = strlen(tmp)+1;
tmp 264 source4/lib/ldb/nssldb/ldb-nss.c memcpy(&buffer[bufpos], tmp, len);
tmp 82 source4/lib/registry/ldb.c uint32_t tmp = strtoul((char *)val->data, NULL, 0);
tmp 83 source4/lib/registry/ldb.c *data = data_blob_talloc(mem_ctx, &tmp, 4);
tmp 348 source4/lib/registry/patchfile.c struct registry_key *tmp;
tmp 359 source4/lib/registry/patchfile.c error = reg_key_add_abs(ctx, ctx, buf, 0, NULL, &tmp);
tmp 372 source4/lib/registry/patchfile.c error = reg_key_add_abs(ctx, ctx, key_name, 0, NULL, &tmp);
tmp 402 source4/lib/registry/patchfile.c struct registry_key *tmp;
tmp 406 source4/lib/registry/patchfile.c error = reg_open_key_abs(ctx, ctx, path, &tmp);
tmp 414 source4/lib/registry/patchfile.c error = reg_val_set(tmp, value_name,
tmp 428 source4/lib/registry/patchfile.c struct registry_key *tmp;
tmp 432 source4/lib/registry/patchfile.c error = reg_open_key_abs(ctx, ctx, key_name, &tmp);
tmp 439 source4/lib/registry/patchfile.c error = reg_del_value(tmp, value_name);
tmp 510 source4/lib/registry/regf.c DATA_BLOB tmp;
tmp 515 source4/lib/registry/regf.c tmp = hbin_get(regf, private_data->nk->values_offset);
tmp 516 source4/lib/registry/regf.c if (!tmp.data) {
tmp 521 source4/lib/registry/regf.c if (tmp.length < private_data->nk->num_values * 4) {
tmp 525 source4/lib/registry/regf.c vk_offset = IVAL(tmp.data, idx * 4);
tmp 238 source4/lib/registry/tools/regshell.c struct registry_key *tmp;
tmp 246 source4/lib/registry/tools/regshell.c error = reg_key_add_name(ctx, ctx->current, argv[1], 0, NULL, &tmp);
tmp 132 source4/lib/registry/util.c uint32_t tmp = strtol(data_str, NULL, 0);
tmp 133 source4/lib/registry/util.c *data = data_blob_talloc(mem_ctx, &tmp, 4);
tmp 1435 source4/lib/wmi/wmi_wrap.c PyObject *tmp = PySwigObject_New(sobj->ptr, ty, 0);
tmp 1436 source4/lib/wmi/wmi_wrap.c res = SWIG_Python_CallFunctor(destroy, tmp);
tmp 1437 source4/lib/wmi/wmi_wrap.c Py_DECREF(tmp);
tmp 1461 source4/lib/wmi/wmi_wrap.c PyObject *tmp = 0;
tmp 1462 source4/lib/wmi/wmi_wrap.c if (!PyArg_ParseTuple(next,(char *)"O:append", &tmp)) return NULL;
tmp 1463 source4/lib/wmi/wmi_wrap.c next = tmp;
tmp 1620 source4/lib/wmi/wmi_wrap.c const PyTypeObject tmp
tmp 1681 source4/lib/wmi/wmi_wrap.c pyswigobject_type = tmp;
tmp 1787 source4/lib/wmi/wmi_wrap.c const PyTypeObject tmp
tmp 1844 source4/lib/wmi/wmi_wrap.c pyswigpacked_type = tmp;
tmp 4119 source4/lib/wmi/wmi_wrap.c const PyTypeObject tmp
tmp 4157 source4/lib/wmi/wmi_wrap.c varlink_type = tmp;
tmp 68 source4/libcli/auth/credentials.c unsigned char zero[4], tmp[16];
tmp 81 source4/libcli/auth/credentials.c MD5Final(tmp, &md5);
tmp 82 source4/libcli/auth/credentials.c hmac_md5_update(tmp, sizeof(tmp), &ctx);
tmp 136 source4/libcli/auth/credentials.c struct netr_LMSessionKey tmp;
tmp 137 source4/libcli/auth/credentials.c des_crypt56(tmp.key, key->key, creds->session_key, 1);
tmp 138 source4/libcli/auth/credentials.c *key = tmp;
tmp 146 source4/libcli/auth/credentials.c struct netr_LMSessionKey tmp;
tmp 147 source4/libcli/auth/credentials.c des_crypt56(tmp.key, key->key, creds->session_key, 0);
tmp 148 source4/libcli/auth/credentials.c *key = tmp;
tmp 156 source4/libcli/auth/credentials.c struct samr_Password tmp;
tmp 157 source4/libcli/auth/credentials.c des_crypt112_16(tmp.hash, pass->hash, creds->session_key, 1);
tmp 158 source4/libcli/auth/credentials.c *pass = tmp;
tmp 166 source4/libcli/auth/credentials.c struct samr_Password tmp;
tmp 167 source4/libcli/auth/credentials.c des_crypt112_16(tmp.hash, pass->hash, creds->session_key, 0);
tmp 168 source4/libcli/auth/credentials.c *pass = tmp;
tmp 657 source4/nbt_server/wins/winsserver.c const char *tmp;
tmp 709 source4/nbt_server/wins/winsserver.c tmp = addresses[0];
tmp 711 source4/nbt_server/wins/winsserver.c addresses[sidx] = tmp;
tmp 1029 source4/nbt_server/wins/winsserver.c uint32_t tmp;
tmp 1042 source4/nbt_server/wins/winsserver.c tmp = lp_parm_int(nbtsrv->task->lp_ctx, NULL, "wreplsrv", "tombstone_interval", 6*24*60*60);
tmp 1043 source4/nbt_server/wins/winsserver.c nbtsrv->winssrv->config.tombstone_interval = tmp;
tmp 1044 source4/nbt_server/wins/winsserver.c tmp = lp_parm_int(nbtsrv->task->lp_ctx, NULL, "wreplsrv"," tombstone_timeout", 1*24*60*60);
tmp 1045 source4/nbt_server/wins/winsserver.c nbtsrv->winssrv->config.tombstone_timeout = tmp;
tmp 379 source4/torture/rpc/eventlog.c const char *tmp;
tmp 386 source4/torture/rpc/eventlog.c tmp = talloc_asprintf(tctx, "C:\\%s", TEST_BACKUP_NAME);
tmp 387 source4/torture/rpc/eventlog.c init_lsa_String(&backup_filename, tmp);
tmp 396 source4/torture/rpc/eventlog.c tmp = talloc_asprintf(tctx, "\\??\\C:\\%s", TEST_BACKUP_NAME);
tmp 397 source4/torture/rpc/eventlog.c init_lsa_String(&backup_filename, tmp);
tmp 70 source4/torture/rpc/samba3rpc.c struct smbcli_session *tmp;
tmp 176 source4/torture/rpc/samba3rpc.c tmp = cli->tree->session;
tmp 181 source4/torture/rpc/samba3rpc.c cli->tree->session = tmp;
tmp 518 source4/torture/rpc/schannel.c TALLOC_CTX *tmp;
tmp 582 source4/torture/rpc/schannel.c talloc_free(conn->tmp);
tmp 583 source4/torture/rpc/schannel.c conn->tmp = talloc_new(s);
tmp 587 source4/torture/rpc/schannel.c cli_credentials_get_ntlm_username_domain(user_creds, conn->tmp,
tmp 596 source4/torture/rpc/schannel.c names_blob = NTLMv2_generate_names_blob(conn->tmp,
tmp 600 source4/torture/rpc/schannel.c status = cli_credentials_get_ntlm_response(user_creds, conn->tmp,
tmp 620 source4/torture/rpc/schannel.c conn->r.in.server_name = talloc_asprintf(conn->tmp, "\\\\%s", dcerpc_server_name(conn->pipe));
tmp 623 source4/torture/rpc/schannel.c conn->r.in.logon = talloc(conn->tmp, union netr_LogonLevel);
tmp 625 source4/torture/rpc/schannel.c conn->r.in.flags = talloc(conn->tmp, uint32_t);
tmp 627 source4/torture/rpc/schannel.c conn->r.out.validation = talloc(conn->tmp, union netr_Validation);
tmp 628 source4/torture/rpc/schannel.c conn->r.out.authoritative = talloc(conn->tmp, uint8_t);
tmp 631 source4/torture/rpc/schannel.c req = dcerpc_netr_LogonSamLogonEx_send(conn->pipe, conn->tmp, &conn->r);
tmp 678 source4/torture/rpc/schannel.c const char *tmp;
tmp 690 source4/torture/rpc/schannel.c tmp = torture_setting_string(s->tctx, "extra_user1", NULL);
tmp 691 source4/torture/rpc/schannel.c if (tmp) {
tmp 692 source4/torture/rpc/schannel.c cli_credentials_parse_string(s->user1_creds, tmp, CRED_SPECIFIED);
tmp 697 source4/torture/rpc/schannel.c tmp = torture_setting_string(s->tctx, "extra_user2", NULL);
tmp 698 source4/torture/rpc/schannel.c if (tmp) {
tmp 699 source4/torture/rpc/schannel.c cli_credentials_parse_string(s->user1_creds, tmp, CRED_SPECIFIED);
tmp 34 source4/utils/net/net_join.c char *tmp;
tmp 42 source4/utils/net/net_join.c tmp = talloc_strdup(ctx, argv[0]);
tmp 45 source4/utils/net/net_join.c tmp = talloc_strdup(ctx, argv[0]);
tmp 59 source4/utils/net/net_join.c domain_name = tmp;
tmp 110 source4/utils/net/net_join.c char *tmp, *targetdir = NULL;
tmp 117 source4/utils/net/net_join.c tmp = talloc_strdup(ctx, argv[0]);
tmp 120 source4/utils/net/net_join.c tmp = talloc_strdup(ctx, argv[0]);
tmp 127 source4/utils/net/net_join.c domain_name = tmp;
tmp 96 source4/utils/net/net_password.c char *tmp;
tmp 105 source4/utils/net/net_password.c tmp = talloc_strdup(ctx, argv[0]);
tmp 108 source4/utils/net/net_password.c tmp = talloc_strdup(ctx, argv[0]);
tmp 116 source4/utils/net/net_password.c if ((p = strchr_m(tmp,'\\'))) {
tmp 118 source4/utils/net/net_password.c domain_name = tmp;
tmp 121 source4/utils/net/net_password.c account_name = tmp;
tmp 931 source4/utils/ntlm_auth.c char tmp[INITIAL_BUFFER_SIZE+1];
tmp 956 source4/utils/ntlm_auth.c if (fgets(tmp, INITIAL_BUFFER_SIZE, stdin) == NULL) {
tmp 967 source4/utils/ntlm_auth.c buf = talloc_strdup_append_buffer(buf, tmp);