Lines Matching refs:mode
208 ** flags -- flags for methods of access (was mode)
305 ** SM_STRSETMODE -- set mode info for the file
307 ** Note: changing the mode can be a safe way to have the "parent"
312 ** mode -- location of new mode to set
320 sm_strsetmode(fp, mode)
322 const int *mode;
327 switch (*mode)
351 ** SM_STRGETMODE -- get mode info for the file
355 ** mode -- location to store current mode
363 sm_strgetmode(fp, mode)
365 int *mode;
372 *mode = SM_IO_RDWR;
375 *mode = SM_IO_RDONLY;
378 *mode = SM_IO_WRONLY;
453 ** The same functionality can be done by changing the mode of the file.