Searched refs:umask (Results 1 - 25 of 43) sorted by relevance

12

/external/clang/test/CodeGen/
H A D2003-11-04-EmptyStruct.c4 struct fs_struct { rwlock_t lock; int umask; }; member in struct:fs_struct
/external/oprofile/gui/
H A Doprof_start_config.h25 uint umask; member in struct:event_setting
H A Doprof_start_config.cpp29 umask(0),
H A Doprof_start.cpp243 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 << end
[all...]
/external/oprofile/daemon/
H A Dopd_pipe.c29 mode_t orig_umask = umask(0111);
36 umask(orig_umask);
/external/ltrace/sysdeps/linux-gnu/metag/
H A Dtrace.c277 int umask = 0, optype = 0; local
295 umask = 0x1f;
301 umask = 0xf;
315 reg = (inst >> 14) & umask;
325 & umask, &regs);
330 & umask, &regs);
/external/chromium_org/v8/test/mjsunit/
H A Dd8-os.js100 // Set umask. This changes the umask for the whole process and is
102 var old_umask = os.umask(0777);
109 os.umask(old_umask);
151 arg_error("os.umask();");
160 arg_error("os.umask(0, 0);");
167 arg_error("os.umask([]);");
/external/e2fsprogs/lib/ext2fs/
H A Dtst_fs_struct.c65 check_field(umask);
H A Dmkdir.c84 inode.i_mode = LINUX_S_IFDIR | (0777 & ~fs->umask);
H A Dinitialize.c115 fs->umask = 022;
/external/ipsec-tools/src/racoon/
H A Dmain.c159 umask(077);
160 if (umask(077) != 077) {
161 errx(1, "could not set umask");
H A Dplainrsa-gen.c192 umask(0077);
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dcommon.py372 # file that can only be read by the owner, regardless of the umask.
373 # There's no reason to not respect the umask here, which means that
376 # No way to get the umask without setting a new one? Set a safe one
378 umask = os.umask(077)
379 os.umask(umask)
380 os.chmod(self.tmp_path, 0666 & ~umask)
/external/kernel-headers/original/uapi/linux/
H A Dfuse.h56 * - add umask flag to input argument of open, mknod and mkdir
212 * FUSE_DONT_MASK: don't apply umask to file mode on create operations
411 uint32_t umask; member in struct:fuse_mknod_in
417 uint32_t umask; member in struct:fuse_mkdir_in
455 uint32_t umask; member in struct:fuse_create_in
/external/chromium_org/v8/tools/testrunner/server/
H A Ddaemon.py50 os.umask(0)
/external/chromium_org/tools/gyp/pylib/gyp/generator/
H A Dxcode.py465 # file that can only be read by the owner, regardless of the umask.
466 # There's no reason to not respect the umask here, which means that
469 # No way to get the umask without setting a new one? Set a safe one
471 umask = os.umask(077)
472 os.umask(umask)
474 os.chmod(new_pbxproj_path, 0666 & ~umask)
/external/e2fsprogs/misc/
H A Duuidd.c301 save_umask = umask(0);
310 (void) umask(save_umask);
/external/lldb/test/pexpect-2.4/examples/
H A Dbd_serv.py78 done (to avoid confusing inetd). Only the chdir() and umask() steps remain
107 os.umask(0)
/external/qemu/
H A Dos-posix.c281 umask(027);
/external/chromium_org/base/memory/
H A Dshared_memory_unittest.cc552 // Set a umask and restore the old mask on destruction.
556 old_umask_ = umask(target_mask);
558 ~ScopedUmaskSetter() { umask(old_umask_); }
/external/e2fsprogs/lib/uuid/
H A Dgen_uuid.c324 save_umask = umask(0);
327 (void) umask(save_umask);
/external/mksh/src/
H A Dfuncs.c139 {"umask", c_umask},
1627 old_umask = umask((mode_t)0);
1628 umask(old_umask);
1662 old_umask = umask((mode_t)0);
1664 umask(old_umask);
1737 umask(new_umask);
2706 oldmode = umask((mode_t)0);
2747 umask(oldmode);
/external/ppp/pppd/
H A Dmain.c337 umask(umask(0777) | 022);
1714 (void) umask (S_IRWXG|S_IRWXO);
/external/chromium_org/components/nacl/loader/nonsfi/
H A Dnonsfi_sandbox_sigsys_unittest.cc575 RESTRICT_SYSCALL_DEATH_TEST(umask);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample_aos.c209 LLVMValueRef lmask, umask, mask; local
309 umask = lp_build_compare(int_coord_bld->gallivm, int_coord_bld->type,
313 coord0 = lp_build_select(int_coord_bld, umask, coord0, length_minus_one);
315 mask = LLVMBuildAnd(builder, lmask, umask, "");

Completed in 2532 milliseconds

12