OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:statfile
(Results
1 - 5
of
5
) sorted by null
/external/eigen/bench/spbench/
spbenchsolver.cpp
45
string
statFile
;
48
bool statFileExists = get_options(argc, args, "-o", &
statFile
);
51
statbuf.open(
statFile
.c_str(), std::ios::out);
73
Browse_Matrices<double>(current_dir, statFileExists,
statFile
,maxiters, tol);
77
Browse_Matrices<std::complex<double> >(current_dir, statFileExists,
statFile
, maxiters, tol);
81
statbuf.open(
statFile
.c_str(), std::ios::app);
83
cout << "\n Output written in " <<
statFile
<< " ...\n";
spbenchsolver.h
488
void Browse_Matrices(const string folder, bool statFileExists, std::string&
statFile
, int maxiters, double tol)
514
std::ofstream statbuf(
statFile
.c_str(), std::ios::app);
/hardware/ti/omap4xxx/security/smc_pa_ctrl/
smc_pa_ctrl_linux.c
77
struct stat
statFile
;
81
if (stat(pFileName, &
statFile
) != 0)
87
nBytesToAllocate =
statFile
.st_size;
109
nBytesRead = fread(pBuffer, 1,
statFile
.st_size, pFile);
111
if (nBytesRead !=
statFile
.st_size)
/system/core/libcutils/
sched_policy.c
272
char
statfile
[64];
local
277
sprintf(
statfile
, "/proc/%d/stat", tid);
280
fd = open(
statfile
, O_RDONLY);
/frameworks/base/core/java/com/android/internal/os/
ProcessCpuTracker.java
180
final String
statFile
;
220
statFile
= new File(procDir, "stat").toString();
235
statFile
= new File(taskDir, "stat").toString();
241
uid = FileUtils.getUid(
statFile
.toString());
377
if (!Process.readProcFile(st.
statFile
.toString(),
445
if (Process.readProcFile(st.
statFile
.toString(),
538
final String
statFile
= "/proc/" + pid + "/stat";
540
if (Process.readProcFile(
statFile
, PROCESS_STATS_FORMAT,
Completed in 93 milliseconds