/external/llvm/projects/sample/autoconf/m4/ |
link_options.m4 | 84 (umask 077 && mktemp -d "$TMPDIR/fooXXXXXX") 2>/dev/null 89 (umask 077 && mkdir "$tmp")
|
/bootable/recovery/minzip/ |
DirUtil.h | 33 * calls; no modifications are made to umask.
|
/external/openssh/contrib/ |
ssh-copy-id | 44 { eval "$GET_ID" ; } | ssh $host "umask 077; test -d ~/.ssh || mkdir ~/.ssh ; cat >> ~/.ssh/authorized_keys" || exit 1
|
/external/oprofile/gui/ |
oprof_start_config.cpp | 29 umask(0),
|
oprof_start.cpp | 243 event_cfgs[descr.name].umask = 0; 245 event_cfgs[descr.name].umask = descr.unit->default_mask; 290 event_cfgs[descr.name].umask = descr.um; 340 event_cfgs[ev_name].umask = 347 event_cfgs[ev_name].umask = 0; 612 cfg.umask = get_unit_mask(curr); 810 check->setChecked(cfg.umask == um->um[i].value); 812 check->setChecked(cfg.umask & um->um[i].value); 883 cfg.umask == 0) { 887 << cfg.umask << endl [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include-fixed/X11/ |
Xw32defs.h | 60 #define umask _umask macro
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/X11/ |
Xw32defs.h | 60 #define umask _umask macro
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/X11/ |
Xw32defs.h | 60 #define umask _umask macro
|
/system/extras/tests/cpueater/ |
cpueater.c | 41 umask(0);
|
daemonize.c | 93 umask(0);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_dumbdbm.py | 43 if not (hasattr(os, 'chmod') and hasattr(os, 'umask')): 47 old_umask = os.umask(0002) 51 os.umask(old_umask)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_dumbdbm.py | 43 if not (hasattr(os, 'chmod') and hasattr(os, 'umask')): 47 old_umask = os.umask(0002) 51 os.umask(old_umask)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
dumbdbm.py | 235 will be modified by the prevailing umask). 240 # Modify mode depending on the umask 242 um = _os.umask(0) 243 _os.umask(um) 247 # Turn off any bits that are set in the umask
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
dumbdbm.py | 235 will be modified by the prevailing umask). 240 # Modify mode depending on the umask 242 um = _os.umask(0) 243 _os.umask(um) 247 # Turn off any bits that are set in the umask
|
/system/core/sdcard/ |
fuse.h | 40 * - add umask flag to input argument of open, mknod and mkdir 154 * FUSE_DONT_MASK: don't apply umask to file mode on create operations 313 __u32 umask; member in struct:fuse_mknod_in 319 __u32 umask; member in struct:fuse_mkdir_in 357 __u32 umask; member in struct:fuse_create_in
|
/system/core/toolbox/cp/ |
cp.c | 206 /* Copy the umask for explicit mode setting. */ 207 myumask = umask(0); 208 (void)umask(myumask); 479 * modified by the umask. Trade-off between being 482 * umask blocks owner writes, we fail.. 503 * umask; arguably wrong, but it's been that way
|
/system/core/adb/ |
adb_auth_host.c | 194 old_mask = umask(077); 199 umask(old_mask); 203 umask(old_mask);
|
/external/chromium_org/chrome/browser/ui/prefs/ |
prefs_tab_helper_browsertest.cc | 51 // Make the copy writable. On POSIX we assume the umask allows files
|
/external/e2fsprogs/lib/ext2fs/ |
mkdir.c | 83 inode.i_mode = LINUX_S_IFDIR | (0777 & ~fs->umask);
|
/external/openssh/contrib/hpux/ |
egd.rc | 22 umask 022
|
/external/openssh/ |
opensshd.init.in | 6 umask 022
|
/external/v8/src/ |
d8.h | 346 // os.umask(alue) calls the umask system call and returns the old umask. 349 // with the current umask. Intermediate directories are created if necessary.
|
/external/bison/lib/ |
stdlib.in.h | 336 The file is created read-write (mask at least 0600 & ~umask), but it may be 337 world-readable and world-writable (mask 0666 & ~umask), depending on the 364 The file is created read-write (mask at least 0600 & ~umask), but it may be 365 world-readable and world-writable (mask 0666 & ~umask), depending on the 390 The file is created read-write (mask at least 0600 & ~umask), but it may be 391 world-readable and world-writable (mask 0666 & ~umask), depending on the 422 The file is created read-write (mask at least 0600 & ~umask), but it may be 423 world-readable and world-writable (mask 0666 & ~umask), depending on the
|
/external/chromium_org/tools/gyp/pylib/gyp/ |
common.py | 371 # file that can only be read by the owner, regardless of the umask. 372 # There's no reason to not respect the umask here, which means that 375 # No way to get the umask without setting a new one? Set a safe one 377 umask = os.umask(077) 378 os.umask(umask) 379 os.chmod(self.tmp_path, 0666 & ~umask)
|
/external/kernel-headers/original/linux/ |
compat.h | 198 long compat_get_bitmap(unsigned long *mask, compat_ulong_t __user *umask, 200 long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
|