OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tmp_filename
(Results
1 - 7
of
7
) sorted by null
/external/dbus/dbus/
dbus-file-win.c
220
DBusString
tmp_filename
;
local
233
if (!_dbus_string_init (&
tmp_filename
))
239
if (!_dbus_string_copy (filename, 0, &
tmp_filename
, 0))
242
_dbus_string_free (&
tmp_filename
);
246
if (!_dbus_string_append (&
tmp_filename
, "."))
249
_dbus_string_free (&
tmp_filename
);
254
if (!_dbus_generate_random_ascii (&
tmp_filename
, N_TMP_FILENAME_RANDOM_BYTES))
257
_dbus_string_free (&
tmp_filename
);
262
tmp_filename_c = _dbus_string_get_const_data (&
tmp_filename
);
279
if (! _dbus_make_file_world_readable (&
tmp_filename
, error)
[
all
...]
dbus-file-unix.c
172
DBusString
tmp_filename
;
local
184
if (!_dbus_string_init (&
tmp_filename
))
190
if (!_dbus_string_copy (filename, 0, &
tmp_filename
, 0))
193
_dbus_string_free (&
tmp_filename
);
197
if (!_dbus_string_append (&
tmp_filename
, "."))
200
_dbus_string_free (&
tmp_filename
);
205
if (!_dbus_generate_random_ascii (&
tmp_filename
, N_TMP_FILENAME_RANDOM_BYTES))
208
_dbus_string_free (&
tmp_filename
);
213
tmp_filename_c = _dbus_string_get_const_data (&
tmp_filename
);
311
_dbus_string_free (&
tmp_filename
);
[
all
...]
/external/fio/tools/plot/
fio2gnuplot
94
tmp_filename
= "gnuplot_temp_file.%d" % pos
variable
99
compare_raw.write(",\\\n'%s' using 2:3 with linespoints title '%s'" % (
tmp_filename
,fio_data_file[pos]))
100
compare_smooth.write(",\\\n'%s' using 2:3 smooth csplines title '%s'" % (
tmp_filename
,fio_data_file[pos]))
101
compare_trend.write(",\\\n'%s' using 2:3 smooth bezier title '%s'" % (
tmp_filename
,fio_data_file[pos]))
108
f.write("call \'%s/graph2D.gpm\' \'%s' \'%s\' \'%s\' \'%s\' \'%s\' \'%s\' \'%s\' \'%f\'\n" % (gpm_dir,title,
tmp_filename
,fio_data_file[pos],raw_filename,mode,smooth_filename,trend_filename,avg))
133
tmp_filename
= "%sgnuplot_temp_file.%d" % (gnuplot_output_dir, pos)
134
temp_files.append(open(
tmp_filename
,'r'))
162
tmp_filename
= "%sgnuplot_temp_file.%d" % (gnuplot_output_dir,pos)
163
temporary_files.append(
tmp_filename
)
164
gnuplot_file=open(
tmp_filename
,'w'
[
all
...]
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
util.py
273
tmp_filename
= None
275
tmp_fd,
tmp_filename
= tempfile.mkstemp(prefix='gsutil-temp-cfg')
280
with open(
tmp_filename
, 'w') as tmp_file:
283
with SetBotoConfigFileForTest(
tmp_filename
):
287
if
tmp_filename
:
289
os.remove(
tmp_filename
)
/ndk/sources/host-tools/make-3.81/tests/
test_driver.pl
439
$
tmp_filename
= "$testpath.$tmpfilesuffix";
480
&rmfiles ($
tmp_filename
. &num_suffix ($i) );
1183
return ($
tmp_filename
. &num_suffix ($num_of_tmpfiles));
/external/autotest/client/site_tests/firmware_TouchMTB/
test_flow.py
261
tmp_filename
= filename + '.tmp'
262
os.rename(filename,
tmp_filename
)
263
with open(
tmp_filename
) as src_f:
268
os.remove(
tmp_filename
)
/system/extras/simpleperf/
cmd_record.cpp
714
std::string
tmp_filename
= record_filename_ + ".tmp";
local
715
record_file_writer_ = CreateRecordFile(
tmp_filename
);
740
if (rename(
tmp_filename
.c_str(), record_filename_.c_str()) != 0) {
741
PLOG(ERROR) << "failed to rename " <<
tmp_filename
<< " to " << record_filename_;
Completed in 380 milliseconds