HomeSort by relevance Sort by last modified time
    Searched refs:access_mode (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/sandbox/win/src/
acl.h 21 // Appends an ACE represented by |sid|, |access_mode|, and |access| to
24 bool AddSidToDacl(const Sid& sid, ACL* old_dacl, ACCESS_MODE access_mode,
35 // Adds an ACE represented by |known_sid|, |access_mode|, and |access| to
38 const Sid& sid, ACCESS_MODE access_mode,
acl.cc 40 bool AddSidToDacl(const Sid& sid, ACL* old_dacl, ACCESS_MODE access_mode,
43 new_access.grfAccessMode = access_mode;
96 const Sid& sid, ACCESS_MODE access_mode,
107 if (!AddSidToDacl(sid.GetPSID(), old_dacl, access_mode, access, &new_dacl)) {
  /device/asus/flo/conn_init/
wfc_util_fctrl.h 75 * access_mode : R_OK | W_OK | X_OK | F_OK
80 extern int wfc_util_ffile_check(char *pDestFName, int access_mode);
wfc_util_fctrl.c 550 * access_mode : R_OK | W_OK | X_OK | F_OK
555 int wfc_util_ffile_check(char *pDestFName, int access_mode)
559 if (access(pDestFName, access_mode) == 0) {
  /device/lge/mako/conn_init/
wfc_util_fctrl.h 75 * access_mode : R_OK | W_OK | X_OK | F_OK
80 extern int wfc_util_ffile_check(char *pDestFName, int access_mode);
wfc_util_fctrl.c 550 * access_mode : R_OK | W_OK | X_OK | F_OK
555 int wfc_util_ffile_check(char *pDestFName, int access_mode)
559 if (access(pDestFName, access_mode) == 0) {
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_eu.c 97 void brw_set_access_mode( struct brw_compile *p, GLuint access_mode )
99 p->current->header.access_mode = access_mode;
brw_disasm.c 236 char *access_mode[2] = { variable
532 if (inst->header.access_mode == BRW_ALIGN_1)
908 else if (inst->header.access_mode == BRW_ALIGN_1)
968 else if (inst->header.access_mode == BRW_ALIGN_1)
1072 if (inst->header.access_mode == BRW_ALIGN_1)
    [all...]
brw_eu_emit.c 120 if (insn->header.access_mode == BRW_ALIGN_1) {
138 if (insn->header.access_mode == BRW_ALIGN_1) {
263 if (insn->header.access_mode == BRW_ALIGN_1) {
275 if (insn->header.access_mode == BRW_ALIGN_1) {
283 if (insn->header.access_mode == BRW_ALIGN_1) {
345 if (insn->header.access_mode == BRW_ALIGN_1) {
354 if (insn->header.access_mode == BRW_ALIGN_1) {
775 assert(insn->header.access_mode == BRW_ALIGN_16);
    [all...]
brw_optimize.c 434 inst->header.access_mode == BRW_ALIGN_1 &&
638 insn->header.access_mode != BRW_ALIGN_16 ||
brw_eu.h 806 void brw_set_access_mode( struct brw_compile *p, GLuint access_mode );
brw_structs.h 944 GLuint access_mode:1; member in struct:brw_instruction::__anon19045
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_eu.c 97 void brw_set_access_mode( struct brw_compile *p, GLuint access_mode )
99 p->current->header.access_mode = access_mode;
brw_disasm.c 236 char *access_mode[2] = { variable
532 if (inst->header.access_mode == BRW_ALIGN_1)
908 else if (inst->header.access_mode == BRW_ALIGN_1)
968 else if (inst->header.access_mode == BRW_ALIGN_1)
1072 if (inst->header.access_mode == BRW_ALIGN_1)
    [all...]
brw_eu_emit.c 120 if (insn->header.access_mode == BRW_ALIGN_1) {
138 if (insn->header.access_mode == BRW_ALIGN_1) {
263 if (insn->header.access_mode == BRW_ALIGN_1) {
275 if (insn->header.access_mode == BRW_ALIGN_1) {
283 if (insn->header.access_mode == BRW_ALIGN_1) {
345 if (insn->header.access_mode == BRW_ALIGN_1) {
354 if (insn->header.access_mode == BRW_ALIGN_1) {
775 assert(insn->header.access_mode == BRW_ALIGN_16);
    [all...]
brw_optimize.c 434 inst->header.access_mode == BRW_ALIGN_1 &&
638 insn->header.access_mode != BRW_ALIGN_16 ||
brw_eu.h 806 void brw_set_access_mode( struct brw_compile *p, GLuint access_mode );
brw_structs.h 944 GLuint access_mode:1; member in struct:brw_instruction::__anon11529
    [all...]
  /device/asus/fugu/kernel-headers/drm/
psb_ttm_placement_user.h 79 uint32_t access_mode; member in struct:ttm_pl_synccpu_arg
  /device/asus/fugu/original-kernel-headers/drm/
psb_ttm_placement_user.h 172 * @access_mode: access mode indicated by the
183 uint32_t access_mode; member in struct:ttm_pl_synccpu_arg
  /external/chromium_org/sandbox/linux/services/
broker_process.cc 106 const int access_mode = flags & O_ACCMODE; local
107 if (access_mode != O_RDONLY && access_mode != O_WRONLY &&
108 access_mode != O_RDWR) {
  /external/chromium_org/third_party/libusb/src/libusb/os/
poll_windows.h 95 struct winfd usbi_create_fd(HANDLE handle, int access_mode,
poll_windows.c 318 struct winfd usbi_create_fd(HANDLE handle, int access_mode, struct usbi_transfer *itransfer, cancel_transfer *cancel_fn)
333 if ((access_mode != RW_READ) && (access_mode != RW_WRITE)) {
338 if (access_mode == RW_READ) {
  /external/srec/portable/src/
pstream.c 176 int access_mode; local
197 access_mode = (mode[0] == 'r') ? FILEREADMODE : FILEWRITEMODE;
213 if (access_mode == FILEREADMODE)
236 m = access_mode | text_mode;
238 if (access_mode == FILEREADMODE)
250 else if (ISWRITEMODE(access_mode))
  /hardware/intel/common/libwsbm/src/
wsbm_ttmpool.c 267 arg.access_mode = kmode;
307 arg.access_mode = kmode;

Completed in 768 milliseconds

1 2