OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:from_stat
(Results
1 - 3
of
3
) sorted by null
/system/core/toolbox/cp/
utils.c
343
copy_fifo(struct stat *
from_stat
, int exists)
349
if (mkfifo(to.p_path,
from_stat
->st_mode)) {
353
return (pflag ? setfile(
from_stat
, 0) : 0);
357
copy_special(struct stat *
from_stat
, int exists)
363
if (mknod(to.p_path,
from_stat
->st_mode,
from_stat
->st_rdev)) {
367
return (pflag ? setfile(
from_stat
, 0) : 0);
/external/chromium_org/base/
file_util_posix.cc
300
struct stat
from_stat
;
local
302
if (stat(from_path.value().c_str(), &
from_stat
) < 0) {
318
DCHECK(recursive || S_ISDIR(
from_stat
.st_mode));
331
if (S_ISDIR(
from_stat
.st_mode)) {
332
if (mkdir(target_path.value().c_str(),
from_stat
.st_mode & 01777) != 0 &&
338
} else if (S_ISREG(
from_stat
.st_mode)) {
351
from_stat
= traversal.GetInfo().stat();
/ndk/sources/host-tools/sed-4.2.1/sed/
execute.c
287
mbstate_t
from_stat
;
298
MEMCPY (&
from_stat
, &to->mbstate, sizeof(mbstate_t));
302
int n = MBRTOWC (&wc, string, length, &
from_stat
);
307
memset (&to->mbstate, 0, sizeof (
from_stat
));
285
mbstate_t
from_stat
;
local
[
all
...]
Completed in 117 milliseconds