amode             101 ompi/file/file.c                    int amode, struct opal_info_t *info, ompi_file_t **fh)
amode             123 ompi/file/file.c     file->f_amode = amode;
amode             154 ompi/file/file.h                    int amode, struct opal_info_t *info,
amode             307 ompi/mca/common/ompio/common_ompio.h                                               int amode, opal_info_t *info,
amode              50 ompi/mca/common/ompio/common_ompio_file_open.c                                 int amode,
amode              61 ompi/mca/common/ompio/common_ompio_file_open.c     if ( ((amode&MPI_MODE_RDONLY)?1:0) + ((amode&MPI_MODE_RDWR)?1:0) +
amode              62 ompi/mca/common/ompio/common_ompio_file_open.c 	 ((amode&MPI_MODE_WRONLY)?1:0) != 1 ) {
amode              66 ompi/mca/common/ompio/common_ompio_file_open.c     if ((amode & MPI_MODE_RDONLY) &&
amode              67 ompi/mca/common/ompio/common_ompio_file_open.c         ((amode & MPI_MODE_CREATE) || (amode & MPI_MODE_EXCL))) {
amode              71 ompi/mca/common/ompio/common_ompio_file_open.c     if ((amode & MPI_MODE_RDWR) && (amode & MPI_MODE_SEQUENTIAL)) {
amode              95 ompi/mca/common/ompio/common_ompio_file_open.c     ompio_fh->f_amode  = amode;
amode             114 ompi/mca/common/ompio/common_ompio_file_open.c     if ( OMPIO_MCA_GET(ompio_fh, overwrite_amode) && !(amode & MPI_MODE_SEQUENTIAL) ) {
amode             116 ompi/mca/common/ompio/common_ompio_file_open.c         if ((amode & MPI_MODE_WRONLY)){
amode             117 ompi/mca/common/ompio/common_ompio_file_open.c             amode -= MPI_MODE_WRONLY;
amode             118 ompi/mca/common/ompio/common_ompio_file_open.c             amode += MPI_MODE_RDWR;
amode             157 ompi/mca/common/ompio/common_ompio_file_open.c 					amode,
amode             176 ompi/mca/common/ompio/common_ompio_file_open.c 							   amode,
amode             114 ompi/mca/fs/fs.h     struct ompi_communicator_t *comm, const char *filename, int amode,
amode              48 ompi/mca/fs/ime/fs_ime.h                           int amode,
amode              37 ompi/mca/fs/ime/fs_ime_file_open.c     int amode = 0;
amode              53 ompi/mca/fs/ime/fs_ime_file_open.c         amode = amode | O_RDONLY;
amode              55 ompi/mca/fs/ime/fs_ime_file_open.c         amode = amode | O_WRONLY;
amode              57 ompi/mca/fs/ime/fs_ime_file_open.c         amode = amode | O_RDWR;
amode              65 ompi/mca/fs/ime/fs_ime_file_open.c             amode = amode | O_CREAT;
amode              67 ompi/mca/fs/ime/fs_ime_file_open.c             amode = amode | O_EXCL;
amode              69 ompi/mca/fs/ime/fs_ime_file_open.c         fh->fd = ime_native_open(filename, amode, perm);
amode              84 ompi/mca/fs/ime/fs_ime_file_open.c         fh->fd = ime_native_open(filename, amode, perm);
amode              63 ompi/mca/fs/lustre/fs_lustre.h                              int amode,
amode              66 ompi/mca/fs/lustre/fs_lustre_file_open.c     int amode, rank;
amode              87 ompi/mca/fs/lustre/fs_lustre_file_open.c     amode = 0;
amode              89 ompi/mca/fs/lustre/fs_lustre_file_open.c         amode = amode | O_RDONLY;
amode              91 ompi/mca/fs/lustre/fs_lustre_file_open.c         amode = amode | O_WRONLY;
amode              93 ompi/mca/fs/lustre/fs_lustre_file_open.c         amode = amode | O_RDWR;
amode             119 ompi/mca/fs/lustre/fs_lustre_file_open.c             amode = amode | O_CREAT;
amode             121 ompi/mca/fs/lustre/fs_lustre_file_open.c             amode = amode | O_EXCL;
amode             124 ompi/mca/fs/lustre/fs_lustre_file_open.c              ( amode&O_CREAT)                                      && 
amode             125 ompi/mca/fs/lustre/fs_lustre_file_open.c              ( (amode&O_RDWR)|| amode&O_WRONLY) ) {
amode             132 ompi/mca/fs/lustre/fs_lustre_file_open.c             fh->fd = open(filename, amode | O_LOV_DELAY_CREATE, perm);
amode             135 ompi/mca/fs/lustre/fs_lustre_file_open.c             fh->fd = open (filename, amode, perm);
amode             169 ompi/mca/fs/lustre/fs_lustre_file_open.c         fh->fd = open (filename, amode, perm);
amode              75 ompi/mca/fs/pvfs2/fs_pvfs2.h                             int amode,
amode              59 ompi/mca/fs/ufs/fs_ufs.h                           int amode,
amode              51 ompi/mca/fs/ufs/fs_ufs_file_open.c     int amode;
amode              66 ompi/mca/fs/ufs/fs_ufs_file_open.c     amode = 0;
amode              69 ompi/mca/fs/ufs/fs_ufs_file_open.c         amode = amode | O_RDONLY;
amode              71 ompi/mca/fs/ufs/fs_ufs_file_open.c         amode = amode | O_WRONLY;
amode              73 ompi/mca/fs/ufs/fs_ufs_file_open.c         amode = amode | O_RDWR;
amode              80 ompi/mca/fs/ufs/fs_ufs_file_open.c             amode = amode | O_CREAT;
amode              82 ompi/mca/fs/ufs/fs_ufs_file_open.c             amode = amode | O_EXCL;
amode              84 ompi/mca/fs/ufs/fs_ufs_file_open.c 	fh->fd = open (filename, amode, perm);
amode             126 ompi/mca/fs/ufs/fs_ufs_file_open.c 	fh->fd = open (filename, amode, perm);
amode             144 ompi/mca/io/io.h     (struct ompi_communicator_t *comm, const char *filename, int amode,
amode             155 ompi/mca/io/io.h     (struct ompi_file_t *fh, int *amode);
amode             149 ompi/mca/io/ompio/io_ompio.h                             int amode,
amode             160 ompi/mca/io/ompio/io_ompio.h                                  int *amode);
amode              47 ompi/mca/io/ompio/io_ompio_file_open.c                             int amode,
amode              71 ompi/mca/io/ompio/io_ompio_file_open.c     ret = mca_common_ompio_file_open(comm,filename,amode,info,&data->ompio_fh,use_sharedfp);
amode             289 ompi/mca/io/ompio/io_ompio_file_open.c                                  int *amode)
amode             296 ompi/mca/io/ompio/io_ompio_file_open.c     *amode = data->ompio_fh.f_amode;
amode              60 ompi/mca/io/romio321/romio/adio/ad_gpfs/ad_gpfs_open.c   int perm, old_mask, amode, rank, rc;
amode              73 ompi/mca/io/romio321/romio/adio/ad_gpfs/ad_gpfs_open.c     amode = 0;
amode              75 ompi/mca/io/romio321/romio/adio/ad_gpfs/ad_gpfs_open.c 	amode = amode | O_CREAT;
amode              77 ompi/mca/io/romio321/romio/adio/ad_gpfs/ad_gpfs_open.c 	amode = amode | O_RDONLY;
amode              79 ompi/mca/io/romio321/romio/adio/ad_gpfs/ad_gpfs_open.c 	amode = amode | O_WRONLY;
amode              81 ompi/mca/io/romio321/romio/adio/ad_gpfs/ad_gpfs_open.c 	amode = amode | O_RDWR;
amode              83 ompi/mca/io/romio321/romio/adio/ad_gpfs/ad_gpfs_open.c 	amode = amode | O_EXCL;
amode              87 ompi/mca/io/romio321/romio/adio/ad_gpfs/ad_gpfs_open.c     fd->fd_sys = open(fd->filename, amode, perm);
amode              91 ompi/mca/io/romio321/romio/adio/ad_gpfs/ad_gpfs_open.c   DBG_FPRINTF(stderr,"open('%s',%#X,%#X) rc=%d, errno=%d\n",fd->filename,amode,perm,fd->fd_sys,errno);
amode              16 ompi/mca/io/romio321/romio/adio/ad_hfs/ad_hfs_open.c     int perm, old_mask, amode;
amode              28 ompi/mca/io/romio321/romio/adio/ad_hfs/ad_hfs_open.c     amode = 0;
amode              30 ompi/mca/io/romio321/romio/adio/ad_hfs/ad_hfs_open.c 	amode = amode | O_CREAT;
amode              32 ompi/mca/io/romio321/romio/adio/ad_hfs/ad_hfs_open.c 	amode = amode | O_RDONLY;
amode              34 ompi/mca/io/romio321/romio/adio/ad_hfs/ad_hfs_open.c 	amode = amode | O_WRONLY;
amode              36 ompi/mca/io/romio321/romio/adio/ad_hfs/ad_hfs_open.c 	amode = amode | O_RDWR;
amode              38 ompi/mca/io/romio321/romio/adio/ad_hfs/ad_hfs_open.c 	amode = amode | O_EXCL;
amode              40 ompi/mca/io/romio321/romio/adio/ad_hfs/ad_hfs_open.c     fd->fd_sys = open64(fd->filename, amode, perm);
amode              20 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c     int perm, old_mask, amode, amode_direct;
amode              39 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c     amode = 0;
amode              41 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	amode = amode | O_CREAT;
amode              43 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	amode = amode | O_RDONLY;
amode              45 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	amode = amode | O_WRONLY;
amode              47 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	amode = amode | O_RDWR;
amode              49 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	amode = amode | O_EXCL;
amode              51 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c     amode_direct = amode | O_DIRECT;
amode              85 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c 	amode = amode | O_LOV_DELAY_CREATE;
amode              87 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c     fd->fd_sys = open(fd->filename, amode, perm);
amode              93 ompi/mca/io/romio321/romio/adio/ad_lustre/ad_lustre_open.c     if ((amode & O_CREAT) && set_layout ) {
amode              12 ompi/mca/io/romio321/romio/adio/ad_nfs/ad_nfs_open.c     int perm, amode;
amode              23 ompi/mca/io/romio321/romio/adio/ad_nfs/ad_nfs_open.c     amode = 0;
amode              25 ompi/mca/io/romio321/romio/adio/ad_nfs/ad_nfs_open.c 	amode = amode | O_CREAT;
amode              27 ompi/mca/io/romio321/romio/adio/ad_nfs/ad_nfs_open.c 	amode = amode | O_RDONLY;
amode              29 ompi/mca/io/romio321/romio/adio/ad_nfs/ad_nfs_open.c 	amode = amode | O_WRONLY;
amode              31 ompi/mca/io/romio321/romio/adio/ad_nfs/ad_nfs_open.c 	amode = amode | O_RDWR;
amode              33 ompi/mca/io/romio321/romio/adio/ad_nfs/ad_nfs_open.c 	amode = amode | O_EXCL;
amode              38 ompi/mca/io/romio321/romio/adio/ad_nfs/ad_nfs_open.c     fd->fd_sys = open(fd->filename, amode, perm);
amode              14 ompi/mca/io/romio321/romio/adio/ad_ntfs/ad_ntfs_open.c     int cmode, amode, attrib;
amode              17 ompi/mca/io/romio321/romio/adio/ad_ntfs/ad_ntfs_open.c     amode = 0;
amode              36 ompi/mca/io/romio321/romio/adio/ad_ntfs/ad_ntfs_open.c 	amode = GENERIC_READ;
amode              40 ompi/mca/io/romio321/romio/adio/ad_ntfs/ad_ntfs_open.c 	amode = GENERIC_WRITE;
amode              44 ompi/mca/io/romio321/romio/adio/ad_ntfs/ad_ntfs_open.c 	amode = GENERIC_READ | GENERIC_WRITE;
amode              61 ompi/mca/io/romio321/romio/adio/ad_ntfs/ad_ntfs_open.c 	amode,
amode              17 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open.c     int perm, old_mask, amode, flag;
amode              27 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open.c     amode = 0;
amode              74 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open.c         amode = amode | O_CREAT;
amode             247 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open.c             int create_fd = open(fd->filename,amode,perm);
amode             260 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open.c 	amode = amode | O_RDONLY;
amode             262 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open.c 	amode = amode | O_WRONLY;
amode             264 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open.c 	amode = amode | O_RDWR;
amode             266 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open.c 	amode = amode | O_EXCL;
amode             275 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open.c             amode = amode | O_CONCURRENT_WRITE;
amode             280 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open.c     fd->fd_sys = open(fd->filename, amode, perm);
amode              17 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open6.c     int perm, old_mask, amode, flag;
amode              28 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open6.c     amode = 0;
amode              80 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open6.c         amode = amode | O_CREAT;
amode             319 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open6.c             int create_fd = open(fd->filename, amode, perm);
amode             331 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open6.c         amode = amode | O_RDONLY;
amode             333 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open6.c         amode = amode | O_WRONLY;
amode             335 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open6.c         amode = amode | O_RDWR;
amode             337 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open6.c         amode = amode | O_EXCL;
amode             344 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open6.c             amode = amode | O_CONCURRENT_WRITE;
amode             349 ompi/mca/io/romio321/romio/adio/ad_panfs/ad_panfs_open6.c     fd->fd_sys = open(fd->filename, amode, perm);
amode              15 ompi/mca/io/romio321/romio/adio/ad_pfs/ad_pfs_hints.c     int err, myrank, fd_sys, perm, amode, old_mask;
amode              86 ompi/mca/io/romio321/romio/adio/ad_pfs/ad_pfs_hints.c 		    amode = 0;
amode              88 ompi/mca/io/romio321/romio/adio/ad_pfs/ad_pfs_hints.c 			amode = amode | O_CREAT;
amode              90 ompi/mca/io/romio321/romio/adio/ad_pfs/ad_pfs_hints.c 			amode = amode | O_RDONLY;
amode              92 ompi/mca/io/romio321/romio/adio/ad_pfs/ad_pfs_hints.c 			amode = amode | O_WRONLY;
amode              94 ompi/mca/io/romio321/romio/adio/ad_pfs/ad_pfs_hints.c 			amode = amode | O_RDWR;
amode              96 ompi/mca/io/romio321/romio/adio/ad_pfs/ad_pfs_hints.c 			amode = amode | O_EXCL;
amode              98 ompi/mca/io/romio321/romio/adio/ad_pfs/ad_pfs_hints.c 		    fd_sys = open(fd->filename, amode, perm);
amode              12 ompi/mca/io/romio321/romio/adio/ad_pfs/ad_pfs_open.c     int perm, amode, old_mask, np_comm, np_total, err, flag;
amode              24 ompi/mca/io/romio321/romio/adio/ad_pfs/ad_pfs_open.c     amode = 0;
amode              26 ompi/mca/io/romio321/romio/adio/ad_pfs/ad_pfs_open.c 	amode = amode | O_CREAT;
amode              28 ompi/mca/io/romio321/romio/adio/ad_pfs/ad_pfs_open.c 	amode = amode | O_RDONLY;
amode              30 ompi/mca/io/romio321/romio/adio/ad_pfs/ad_pfs_open.c 	amode = amode | O_WRONLY;
amode              32 ompi/mca/io/romio321/romio/adio/ad_pfs/ad_pfs_open.c 	amode = amode | O_RDWR;
amode              34 ompi/mca/io/romio321/romio/adio/ad_pfs/ad_pfs_open.c 	amode = amode | O_EXCL;
amode              40 ompi/mca/io/romio321/romio/adio/ad_pfs/ad_pfs_open.c 	fd->fd_sys = _gopen(fd->filename, amode, M_ASYNC, perm);
amode              41 ompi/mca/io/romio321/romio/adio/ad_pfs/ad_pfs_open.c     else fd->fd_sys = open(fd->filename, amode, perm);
amode              12 ompi/mca/io/romio321/romio/adio/ad_piofs/ad_piofs_open.c     int amode, perm, old_mask, err;
amode              26 ompi/mca/io/romio321/romio/adio/ad_piofs/ad_piofs_open.c     amode = 0;
amode              28 ompi/mca/io/romio321/romio/adio/ad_piofs/ad_piofs_open.c 	amode = amode | O_CREAT;
amode              30 ompi/mca/io/romio321/romio/adio/ad_piofs/ad_piofs_open.c 	amode = amode | O_RDONLY;
amode              32 ompi/mca/io/romio321/romio/adio/ad_piofs/ad_piofs_open.c 	amode = amode | O_WRONLY;
amode              34 ompi/mca/io/romio321/romio/adio/ad_piofs/ad_piofs_open.c 	amode = amode | O_RDWR;
amode              36 ompi/mca/io/romio321/romio/adio/ad_piofs/ad_piofs_open.c 	amode = amode | O_EXCL;
amode              38 ompi/mca/io/romio321/romio/adio/ad_piofs/ad_piofs_open.c     fd->fd_sys = open(fd->filename, amode, perm);
amode              12 ompi/mca/io/romio321/romio/adio/ad_pvfs/ad_pvfs_open.c     int perm, amode, old_mask, flag;
amode              26 ompi/mca/io/romio321/romio/adio/ad_pvfs/ad_pvfs_open.c     amode = O_META;
amode              28 ompi/mca/io/romio321/romio/adio/ad_pvfs/ad_pvfs_open.c 	amode = amode | O_CREAT;
amode              30 ompi/mca/io/romio321/romio/adio/ad_pvfs/ad_pvfs_open.c 	amode = amode | O_RDONLY;
amode              32 ompi/mca/io/romio321/romio/adio/ad_pvfs/ad_pvfs_open.c 	amode = amode | O_WRONLY;
amode              34 ompi/mca/io/romio321/romio/adio/ad_pvfs/ad_pvfs_open.c 	amode = amode | O_RDWR;
amode              36 ompi/mca/io/romio321/romio/adio/ad_pvfs/ad_pvfs_open.c 	amode = amode | O_EXCL;
amode              55 ompi/mca/io/romio321/romio/adio/ad_pvfs/ad_pvfs_open.c     fd->fd_sys = pvfs_open64(fd->filename, amode, perm, &pstat, NULL);
amode              12 ompi/mca/io/romio321/romio/adio/ad_sfs/ad_sfs_open.c     int perm, old_mask, amode;
amode              24 ompi/mca/io/romio321/romio/adio/ad_sfs/ad_sfs_open.c     amode = 0;
amode              26 ompi/mca/io/romio321/romio/adio/ad_sfs/ad_sfs_open.c 	amode = amode | O_CREAT;
amode              28 ompi/mca/io/romio321/romio/adio/ad_sfs/ad_sfs_open.c 	amode = amode | O_RDONLY;
amode              30 ompi/mca/io/romio321/romio/adio/ad_sfs/ad_sfs_open.c 	amode = amode | O_WRONLY;
amode              32 ompi/mca/io/romio321/romio/adio/ad_sfs/ad_sfs_open.c 	amode = amode | O_RDWR;
amode              34 ompi/mca/io/romio321/romio/adio/ad_sfs/ad_sfs_open.c 	amode = amode | O_EXCL;
amode              36 ompi/mca/io/romio321/romio/adio/ad_sfs/ad_sfs_open.c     fd->fd_sys = open(fd->filename, amode, perm);
amode              12 ompi/mca/io/romio321/romio/adio/ad_ufs/ad_ufs_open.c     int perm, old_mask, amode;
amode              22 ompi/mca/io/romio321/romio/adio/ad_ufs/ad_ufs_open.c     amode = 0;
amode              24 ompi/mca/io/romio321/romio/adio/ad_ufs/ad_ufs_open.c 	amode = amode | O_CREAT;
amode              26 ompi/mca/io/romio321/romio/adio/ad_ufs/ad_ufs_open.c 	amode = amode | O_RDONLY;
amode              28 ompi/mca/io/romio321/romio/adio/ad_ufs/ad_ufs_open.c 	amode = amode | O_WRONLY;
amode              30 ompi/mca/io/romio321/romio/adio/ad_ufs/ad_ufs_open.c 	amode = amode | O_RDWR;
amode              32 ompi/mca/io/romio321/romio/adio/ad_ufs/ad_ufs_open.c 	amode = amode | O_EXCL;
amode              38 ompi/mca/io/romio321/romio/adio/ad_ufs/ad_ufs_open.c     fd->fd_sys = open(fd->filename, amode, perm);
amode              22 ompi/mca/io/romio321/romio/adio/ad_xfs/ad_xfs_open.c     int perm, amode, amode_direct, factor;
amode              36 ompi/mca/io/romio321/romio/adio/ad_xfs/ad_xfs_open.c     amode = 0;
amode              38 ompi/mca/io/romio321/romio/adio/ad_xfs/ad_xfs_open.c 	amode = amode | O_CREAT;
amode              40 ompi/mca/io/romio321/romio/adio/ad_xfs/ad_xfs_open.c 	amode = amode | O_RDONLY;
amode              42 ompi/mca/io/romio321/romio/adio/ad_xfs/ad_xfs_open.c 	amode = amode | O_WRONLY;
amode              44 ompi/mca/io/romio321/romio/adio/ad_xfs/ad_xfs_open.c 	amode = amode | O_RDWR;
amode              46 ompi/mca/io/romio321/romio/adio/ad_xfs/ad_xfs_open.c     amode_direct = amode | O_DIRECT;
amode              49 ompi/mca/io/romio321/romio/adio/ad_xfs/ad_xfs_open.c 	amode = amode | O_EXCL;
amode              51 ompi/mca/io/romio321/romio/adio/ad_xfs/ad_xfs_open.c     fd->fd_sys = open(fd->filename, amode, perm);
amode              93 ompi/mca/io/romio321/romio/mpi-io/fortran/get_amodef.c FORTRAN_API void FORT_CALL mpi_file_get_amode_(MPI_Fint *fh, MPI_Fint *amode, MPI_Fint *ierr );
amode              95 ompi/mca/io/romio321/romio/mpi-io/fortran/get_amodef.c FORTRAN_API void FORT_CALL mpi_file_get_amode_(MPI_Fint *fh, MPI_Fint *amode, MPI_Fint *ierr )
amode             100 ompi/mca/io/romio321/romio/mpi-io/fortran/get_amodef.c     *ierr = MPI_File_get_amode(fh_c, amode);
amode              97 ompi/mca/io/romio321/romio/mpi-io/fortran/openf.c void mpi_file_open_(MPI_Fint *comm,char *filename,MPI_Fint *amode,
amode             100 ompi/mca/io/romio321/romio/mpi-io/fortran/openf.c void mpi_file_open_(MPI_Fint *comm,char *filename,MPI_Fint *amode,
amode             128 ompi/mca/io/romio321/romio/mpi-io/fortran/openf.c     *ierr = MPI_File_open(comm_c, newfname, *amode, info_c, &fh_c);
amode             137 ompi/mca/io/romio321/romio/mpi-io/fortran/openf.c void mpi_file_open_(MPI_Fint *comm,_fcd filename_fcd,MPI_Fint *amode,
amode             152 ompi/mca/io/romio321/romio/mpi-io/fortran/openf.c FORTRAN_API void FORT_CALL mpi_file_open_(MPI_Fint *comm,char *filename FORT_MIXED_LEN_DECL,MPI_Fint *amode,
amode             155 ompi/mca/io/romio321/romio/mpi-io/fortran/openf.c FORTRAN_API void FORT_CALL mpi_file_open_(MPI_Fint *comm,char *filename FORT_MIXED_LEN(str_len),MPI_Fint *amode,
amode             182 ompi/mca/io/romio321/romio/mpi-io/fortran/openf.c     *ierr = MPI_File_open((MPI_Comm)(*comm), newfname, *amode, info_c, &fh_c);
amode              20 ompi/mca/io/romio321/romio/mpi-io/get_amode.c int MPI_File_get_amode(MPI_File fh, int *amode) __attribute__((weak,alias("PMPI_File_get_amode")));
amode              39 ompi/mca/io/romio321/romio/mpi-io/get_amode.c int MPI_File_get_amode(MPI_File fh, int *amode)
amode              51 ompi/mca/io/romio321/romio/mpi-io/get_amode.c     *amode = adio_fh->orig_access_mode;
amode              20 ompi/mca/io/romio321/romio/mpi-io/open.c int MPI_File_open(MPI_Comm comm, const char *filename, int amode, MPI_Info info, MPI_File *fh) __attribute__((weak,alias("PMPI_File_open")));
amode              48 ompi/mca/io/romio321/romio/mpi-io/open.c int MPI_File_open(MPI_Comm comm, ROMIO_CONST char *filename, int amode,
amode              79 ompi/mca/io/romio321/romio/mpi-io/open.c     if ( ((amode&MPI_MODE_RDONLY)?1:0) + ((amode&MPI_MODE_RDWR)?1:0) +
amode              80 ompi/mca/io/romio321/romio/mpi-io/open.c 	 ((amode&MPI_MODE_WRONLY)?1:0) != 1 )
amode              88 ompi/mca/io/romio321/romio/mpi-io/open.c     if ((amode & MPI_MODE_RDONLY) && 
amode              89 ompi/mca/io/romio321/romio/mpi-io/open.c             ((amode & MPI_MODE_CREATE) || (amode & MPI_MODE_EXCL)))
amode              97 ompi/mca/io/romio321/romio/mpi-io/open.c     if ((amode & MPI_MODE_RDWR) && (amode & MPI_MODE_SEQUENTIAL))
amode             117 ompi/mca/io/romio321/romio/mpi-io/open.c     MPI_Allreduce(&amode, &tmp_amode, 1, MPI_INT, ADIO_same_amode, dupcomm);
amode             154 ompi/mca/io/romio321/romio/mpi-io/open.c     *fh = ADIO_Open(comm, dupcomm, filename, file_system, fsops, amode, 0,
amode             166 ompi/mca/io/romio321/romio/mpi-io/open.c     if ( !ADIO_Feature((*fh), ADIO_SHARED_FP) && (amode & MPI_MODE_SEQUENTIAL)) 
amode              69 ompi/mca/io/romio321/src/io_romio321.h                             int amode,
amode              82 ompi/mca/io/romio321/src/io_romio321.h                                  int *amode);
amode              34 ompi/mca/io/romio321/src/io_romio321_file_open.c                         int amode,
amode              52 ompi/mca/io/romio321/src/io_romio321_file_open.c     ret = ROMIO_PREFIX(MPI_File_open)(comm, filename, amode, ompi_info,
amode             149 ompi/mca/io/romio321/src/io_romio321_file_open.c                              int *amode)
amode             156 ompi/mca/io/romio321/src/io_romio321_file_open.c     ret = ROMIO_PREFIX(MPI_File_get_amode) (data->romio_fh, amode);
amode              75 ompi/mca/sharedfp/individual/sharedfp_individual.c     int amode;
amode              87 ompi/mca/sharedfp/individual/sharedfp_individual.c     amode = fh->f_amode;
amode              88 ompi/mca/sharedfp/individual/sharedfp_individual.c     if ( amode & MPI_MODE_WRONLY || amode & MPI_MODE_RDWR ) {
amode              61 ompi/mca/sharedfp/individual/sharedfp_individual.h                                        int amode,
amode              36 ompi/mca/sharedfp/individual/sharedfp_individual_file_open.c 				       int amode,
amode              60 ompi/mca/sharedfp/lockedfile/sharedfp_lockedfile.h                                        int amode,
amode              42 ompi/mca/sharedfp/lockedfile/sharedfp_lockedfile_file_open.c 				       int amode,
amode             180 ompi/mca/sharedfp/sharedfp.h         struct ompi_communicator_t *comm, const char *filename, int amode,
amode              60 ompi/mca/sharedfp/sm/sharedfp_sm.h                                        int amode,
amode              51 ompi/mca/sharedfp/sm/sharedfp_sm_file_open.c                                int amode,
amode              39 ompi/mpi/c/file_get_amode.c int MPI_File_get_amode(MPI_File fh, int *amode)
amode              49 ompi/mpi/c/file_get_amode.c         } else if (NULL == amode) {
amode              62 ompi/mpi/c/file_get_amode.c             io_module_file_get_amode(fh, amode);
amode              52 ompi/mpi/c/file_open.c int MPI_File_open(MPI_Comm comm, const char *filename, int amode,
amode             109 ompi/mpi/c/file_open.c     rc = ompi_file_open(comm, filename, amode, &(info->super), fh);
amode             158 ompi/mpi/cxx/file.h 			const char* filename, int amode,
amode              32 ompi/mpi/cxx/file_inln.h   int amode;
amode              33 ompi/mpi/cxx/file_inln.h   (void) MPI_File_get_amode(mpi_file, &amode);
amode              34 ompi/mpi/cxx/file_inln.h   return amode;
amode             189 ompi/mpi/cxx/file_inln.h 				 const char* filename, int amode,
amode             193 ompi/mpi/cxx/file_inln.h   (void) MPI_File_open(comm, const_cast<char *>(filename), amode, info, &fh);
amode              41 ompi/mpi/fortran/mpif-h/file_get_amode_f.c                            (MPI_Fint *fh, MPI_Fint *amode, MPI_Fint *ierr),
amode              42 ompi/mpi/fortran/mpif-h/file_get_amode_f.c                            (fh, amode, ierr) )
amode              61 ompi/mpi/fortran/mpif-h/file_get_amode_f.c                            (MPI_Fint *fh, MPI_Fint *amode, MPI_Fint *ierr),
amode              62 ompi/mpi/fortran/mpif-h/file_get_amode_f.c                            (fh, amode, ierr) )
amode              69 ompi/mpi/fortran/mpif-h/file_get_amode_f.c void ompi_file_get_amode_f(MPI_Fint *fh, MPI_Fint *amode, MPI_Fint *ierr)
amode              73 ompi/mpi/fortran/mpif-h/file_get_amode_f.c     OMPI_SINGLE_NAME_DECL(amode);
amode              76 ompi/mpi/fortran/mpif-h/file_get_amode_f.c     c_ierr = PMPI_File_get_amode(c_fh, OMPI_SINGLE_NAME_CONVERT(amode));
amode              80 ompi/mpi/fortran/mpif-h/file_get_amode_f.c         OMPI_SINGLE_INT_2_FINT(amode);
amode              43 ompi/mpi/fortran/mpif-h/file_open_f.c                            (MPI_Fint *comm, char *filename, MPI_Fint *amode, MPI_Fint *info, MPI_Fint *fh, MPI_Fint *ierr, int name_len),
amode              44 ompi/mpi/fortran/mpif-h/file_open_f.c                            (comm, filename, amode, info, fh, ierr, name_len) )
amode              63 ompi/mpi/fortran/mpif-h/file_open_f.c                            (MPI_Fint *comm, char *filename, MPI_Fint *amode, MPI_Fint *info, MPI_Fint *fh, MPI_Fint *ierr, int name_len),
amode              64 ompi/mpi/fortran/mpif-h/file_open_f.c                            (comm, filename, amode, info, fh, ierr, name_len) )
amode              71 ompi/mpi/fortran/mpif-h/file_open_f.c void ompi_file_open_f(MPI_Fint *comm, char *filename, MPI_Fint *amode,
amode              89 ompi/mpi/fortran/mpif-h/file_open_f.c                            OMPI_FINT_2_INT(*amode),
amode             174 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_File_open, mpi_file_open, MPI_FILE_OPEN, (MPI_Fint *comm, char *filename, MPI_Fint *amode, MPI_Fint *info, MPI_Fint *fh, MPI_Fint *ierr, int name_len));
amode             181 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_File_get_amode, mpi_file_get_amode, MPI_FILE_GET_AMODE, (MPI_Fint *fh, MPI_Fint *amode, MPI_Fint *ierr));
amode            2675 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_file_get_amode_f(fh,amode,ierror) &
amode            2679 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(OUT) :: amode
amode            2878 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_file_open_f(comm,filename,amode,info,fh,ierror,filename_len) &
amode            2884 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: amode
amode              68 ompi/mpi/fortran/use-mpi-tkr/mpi-f90-file-interfaces.h subroutine MPI_File_get_amode(fh, amode, ierror)
amode              70 ompi/mpi/fortran/use-mpi-tkr/mpi-f90-file-interfaces.h   integer, intent(out) :: amode
amode             201 ompi/mpi/fortran/use-mpi-tkr/mpi-f90-file-interfaces.h subroutine MPI_File_open(comm, filename, amode, info, fh&
amode             205 ompi/mpi/fortran/use-mpi-tkr/mpi-f90-file-interfaces.h   integer, intent(in) :: amode
amode              68 ompi/mpi/fortran/use-mpi-tkr/pmpi-f90-file-interfaces.h subroutine PMPI_File_get_amode(fh, amode, ierror)
amode              70 ompi/mpi/fortran/use-mpi-tkr/pmpi-f90-file-interfaces.h   integer, intent(out) :: amode
amode             201 ompi/mpi/fortran/use-mpi-tkr/pmpi-f90-file-interfaces.h subroutine PMPI_File_open(comm, filename, amode, info, fh&
amode             205 ompi/mpi/fortran/use-mpi-tkr/pmpi-f90-file-interfaces.h   integer, intent(in) :: amode
amode              36 ompi/mpi/java/c/mpi_File.c         jstring jfilename, jint amode, jlong info)
amode              42 ompi/mpi/java/c/mpi_File.c                            amode, (MPI_Info)info, &fh);
amode             102 ompi/mpi/java/c/mpi_File.c     int amode;
amode             103 ompi/mpi/java/c/mpi_File.c     int rc = MPI_File_get_amode((MPI_File)fh, &amode);
amode             105 ompi/mpi/java/c/mpi_File.c     return amode;
amode              53 ompi/mpi/java/java/File.java 	public File(Comm comm, String filename, int amode) throws MPIException
amode              56 ompi/mpi/java/java/File.java 		handle = open(comm.handle, filename, amode, Info.NULL);
amode              67 ompi/mpi/java/java/File.java 	public File(Comm comm, String filename, int amode, Info info)
amode              71 ompi/mpi/java/java/File.java 		handle = open(comm.handle, filename, amode, info.handle);
amode              74 ompi/mpi/java/java/File.java 	private native long open(long comm, String filename, int amode, long info)