Searched refs:newmode (Results 1 – 4 of 4) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/ |
D | build_scripts.py | 123 newmode = (oldmode | 0555) & 07777 124 if newmode != oldmode: 126 file, oldmode, newmode) 127 os.chmod(file, newmode)
|
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/UefiShell/ |
D | daShell.c | 334 mode_t newmode; in da_ShellStat() local 349 newmode = (mode_t)(Attributes << S_EFISHIFT) | S_ACC_READ; in da_ShellStat() 351 newmode |= _S_IFREG; in da_ShellStat() 353 newmode |= S_ACC_WRITE; in da_ShellStat() 357 newmode |= _S_IFDIR; in da_ShellStat() 359 statbuf->st_mode = newmode; in da_ShellStat()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | fileobject.c | 321 char *newmode; in open_the_file() local 334 newmode = PyMem_MALLOC(strlen(mode) + 3); in open_the_file() 335 if (!newmode) { in open_the_file() 339 strcpy(newmode, mode); in open_the_file() 341 if (_PyFile_SanitizeMode(newmode)) { in open_the_file() 360 wmode = PyUnicode_DecodeASCII(newmode, strlen(newmode), NULL); in open_the_file() 374 f->f_fp = fopen(name, newmode); in open_the_file() 415 PyMem_FREE(newmode); in open_the_file()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | fileobject.c | 321 char *newmode; in open_the_file() local 334 newmode = PyMem_MALLOC(strlen(mode) + 3); in open_the_file() 335 if (!newmode) { in open_the_file() 339 strcpy(newmode, mode); in open_the_file() 341 if (_PyFile_SanitizeMode(newmode)) { in open_the_file() 360 wmode = PyUnicode_DecodeASCII(newmode, strlen(newmode), NULL); in open_the_file() 374 f->f_fp = fopen(name, newmode); in open_the_file() 415 PyMem_FREE(newmode); in open_the_file()
|