tmp_path          223 lib/socket_wrapper/socket_wrapper.c 	char *tmp_path;
tmp_path         1651 lib/socket_wrapper/socket_wrapper.c 		si->tmp_path = strdup(un_addr.sun_path);
tmp_path         2172 lib/socket_wrapper/socket_wrapper.c 	if (si->tmp_path) {
tmp_path         2173 lib/socket_wrapper/socket_wrapper.c 		unlink(si->tmp_path);
tmp_path         2174 lib/socket_wrapper/socket_wrapper.c 		free(si->tmp_path);
tmp_path         2542 source3/include/proto.h int cli_ctemp(struct cli_state *cli, const char *path, char **tmp_path);
tmp_path          248 source3/lib/tdb_validate.c 	char *tmp_path = NULL;
tmp_path          272 source3/lib/tdb_validate.c 	tmp_path = talloc_asprintf(ctx, "%s%s", dst_path, ".tmp");
tmp_path          273 source3/lib/tdb_validate.c 	unlink(tmp_path);
tmp_path          274 source3/lib/tdb_validate.c 	dst_tdb = tdb_open_log(tmp_path,
tmp_path          279 source3/lib/tdb_validate.c 		DEBUG(3, ("Error creating tdb '%s': %s\n", tmp_path,
tmp_path          282 source3/lib/tdb_validate.c 		unlink(tmp_path);
tmp_path          296 source3/lib/tdb_validate.c 	dst_tdb = tdb_open_log(tmp_path, 0, TDB_DEFAULT, O_RDONLY, 0);
tmp_path          298 source3/lib/tdb_validate.c 		DEBUG(3, ("Failed to reopen tdb '%s': %s\n", tmp_path,
tmp_path          317 source3/lib/tdb_validate.c 	if (rename(tmp_path, dst_path) != 0) {
tmp_path          319 source3/lib/tdb_validate.c 			  tmp_path, dst_path, strerror(errno)));
tmp_path          330 source3/lib/tdb_validate.c 	if (tmp_path != NULL) {
tmp_path          331 source3/lib/tdb_validate.c 		unlink(tmp_path);
tmp_path          332 source3/lib/tdb_validate.c 		TALLOC_FREE(tmp_path);
tmp_path          193 source3/libads/disp_sec.c 	char *tmp_path = NULL;
tmp_path          200 source3/libads/disp_sec.c 		if (ADS_ERR_OK(ads_schema_path(ads, mem_ctx, &tmp_path))) {
tmp_path          201 source3/libads/disp_sec.c 			ads->config.schema_path = SMB_STRDUP(tmp_path);
tmp_path          206 source3/libads/disp_sec.c 		if (ADS_ERR_OK(ads_config_path(ads, mem_ctx, &tmp_path))) {
tmp_path          207 source3/libads/disp_sec.c 			ads->config.config_path = SMB_STRDUP(tmp_path);
tmp_path         1844 source3/libsmb/clifile.c int cli_ctemp(struct cli_state *cli, const char *path, char **tmp_path)
tmp_path         1884 source3/libsmb/clifile.c 	if (tmp_path) {
tmp_path         1891 source3/libsmb/clifile.c 		*tmp_path = path2;
tmp_path           34 source3/registry/reg_cachehook.c 	char *tmp_path = NULL;
tmp_path           40 source3/registry/reg_cachehook.c 	tmp_path = talloc_asprintf(mem_ctx, "\\%s", keyname);
tmp_path           41 source3/registry/reg_cachehook.c 	if (tmp_path == NULL) {
tmp_path           46 source3/registry/reg_cachehook.c 	tmp_path = talloc_string_sub(mem_ctx, tmp_path, "\\", "/");
tmp_path           47 source3/registry/reg_cachehook.c 	if (tmp_path == NULL) {
tmp_path           52 source3/registry/reg_cachehook.c 	*path = tmp_path;
tmp_path          356 source3/smbd/notify_internal.c 	char *tmp_path = NULL;
tmp_path          379 source3/smbd/notify_internal.c 		tmp_path = talloc_strndup(notify, e.path, len-2);
tmp_path          380 source3/smbd/notify_internal.c 		if (tmp_path == NULL) {
tmp_path          384 source3/smbd/notify_internal.c 		e.path = tmp_path;
tmp_path          424 source3/smbd/notify_internal.c 	talloc_free(tmp_path);
tmp_path         3772 source3/torture/torture.c 	char *tmp_path;
tmp_path         3908 source3/torture/torture.c 	fnum1 = cli_ctemp(cli1, "\\", &tmp_path);
tmp_path         3913 source3/torture/torture.c 	printf("ctemp gave path %s\n", tmp_path);
tmp_path         3917 source3/torture/torture.c 	if (!cli_unlink(cli1, tmp_path)) {
tmp_path          679 source4/libcli/clifile.c int smbcli_ctemp(struct smbcli_tree *tree, const char *path, char **tmp_path)
tmp_path          694 source4/libcli/clifile.c 	if (tmp_path) {
tmp_path          695 source4/libcli/clifile.c 		*tmp_path = strdup(open_parms.ctemp.out.name);
tmp_path          357 source4/ntvfs/common/notify.c 	char *tmp_path = NULL;
tmp_path          378 source4/ntvfs/common/notify.c 		tmp_path = talloc_strndup(notify, e.path, len-2);
tmp_path          379 source4/ntvfs/common/notify.c 		if (tmp_path == NULL) {
tmp_path          383 source4/ntvfs/common/notify.c 		e.path = tmp_path;
tmp_path          423 source4/ntvfs/common/notify.c 	talloc_free(tmp_path);
tmp_path          771 source4/torture/basic/base.c 	char *tmp_path;
tmp_path          932 source4/torture/basic/base.c 	fnum1 = smbcli_ctemp(cli1->tree, "\\", &tmp_path);
tmp_path          938 source4/torture/basic/base.c 	torture_comment(tctx, "ctemp gave path %s\n", tmp_path);
tmp_path          942 source4/torture/basic/base.c 	if (NT_STATUS_IS_ERR(smbcli_unlink(cli1->tree, tmp_path))) {