Home | History | Annotate | Download | only in Gen

Lines Matching refs:Mode

29     in Mode.

31 The value of Mode is either the bitwise-inclusive OR of the access
38 @param[in] Mode Access permissions to check for.
41 @retval -1 File is not accessible with the given Mode. The error condition
48 int Mode
57 if((Path == NULL) || ((Mode & ~GOOD_MODE) != 0)) {
74 if(Mode == F_OK) { /* Existence test. */
84 if(Mode & R_OK) {
93 if(Mode & W_OK) {
100 if(Mode & X_OK) {