Searched refs:the_assoc (Results 1 - 11 of 11) sorted by relevance

/haiku-buildtools/legacy/gcc/libchill/
H A Ddelete.c33 void __delete( Association_Mode* the_assoc, char* file, int line ) argument
35 if( !the_assoc )
38 if( !TEST_FLAG( the_assoc, IO_ISASSOCIATED ) )
42 if( the_assoc->access )
43 __disconnect( the_assoc->access, file, line );
46 if( unlink( the_assoc->pathname ) )
49 CLR_FLAG( the_assoc, IO_EXISTING );
H A Disassociated.c32 __isassociated( Association_Mode* the_assoc, char* file, int line ) argument
34 if( !the_assoc )
36 return TEST_FLAG(the_assoc, IO_ISASSOCIATED) ? True : False;
H A Dexisting.c32 __existing( Association_Mode* the_assoc, char* file, int line ) argument
34 if( !the_assoc )
36 if( !TEST_FLAG(the_assoc, IO_ISASSOCIATED) )
38 return TEST_FLAG(the_assoc, IO_EXISTING ) ? True : False;
H A Dindexable.c32 __indexable( Association_Mode* the_assoc, char* file, int line ) argument
34 if( !the_assoc )
36 if( !TEST_FLAG(the_assoc, IO_ISASSOCIATED) )
38 return TEST_FLAG(the_assoc, IO_INDEXABLE) ? True : False;
H A Dreadable.c32 __readable( Association_Mode* the_assoc, char* file, int line ) argument
34 if( !the_assoc )
36 if( !TEST_FLAG(the_assoc, IO_ISASSOCIATED) )
38 return TEST_FLAG(the_assoc, IO_READABLE) ? True : False;
H A Dsequencible.c32 __sequencible( Association_Mode* the_assoc, char* file, int line ) argument
34 if( !the_assoc )
36 if( !TEST_FLAG(the_assoc, IO_ISASSOCIATED) )
38 return TEST_FLAG(the_assoc, IO_SEQUENCIBLE) ? True : False;
H A Dvariable.c32 __variable( Association_Mode* the_assoc, char* file, int line ) argument
34 if( !the_assoc )
36 if( !TEST_FLAG(the_assoc, IO_ISASSOCIATED) )
38 return TEST_FLAG( the_assoc, IO_VARIABLE ) ? True : False;
H A Dwriteable.c32 __writeable( Association_Mode* the_assoc, char* file, int line ) argument
34 if( !the_assoc )
36 if( !TEST_FLAG(the_assoc, IO_ISASSOCIATED) )
38 return TEST_FLAG(the_assoc, IO_WRITEABLE) ? True : False;
H A Dbasicio.c53 GetSetAttributes( Association_Mode* the_assoc )
58 if( (retco = stat( the_assoc->pathname, &statbuf )) )
63 SET_FLAG( the_assoc, IO_EXISTING );
64 if( !TEST_FLAG( the_assoc, IO_VARIABLE ) )
65 SET_FLAG( the_assoc, IO_INDEXABLE );
70 SET_FLAG( the_assoc, IO_EXISTING );
71 CLR_FLAG( the_assoc, IO_INDEXABLE );
73 SET_FLAG( the_assoc, IO_SEQUENCIBLE );
77 if( !access( the_assoc->pathname, R_OK ) )
78 SET_FLAG( the_assoc, IO_READABL
85 makeName( Association_Mode* the_assoc, char* the_path, int the_path_len, char* file, int line) argument
115 __associate( Association_Mode* the_assoc, char* the_path, int the_path_len, char* the_mode, int the_mode_len, char* file, int line ) argument
159 __dissociate( Association_Mode* the_assoc, char* file, int line ) argument
189 __create( Association_Mode* the_assoc, char* file, int line ) argument
214 __modify( Association_Mode* the_assoc, char* the_path, int the_path_len, char* the_mode, int the_mode_len, char* file, int line ) argument
263 __connect( void* the_transfer, Association_Mode* the_assoc, Usage_Mode the_usage, Where_Mode the_where, Boolean with_index, signed long the_index, char* file, int line ) argument
[all...]
H A Dwriterecord.c62 Association_Mode* the_assoc; local
71 if( !(the_assoc = the_access->association) )
75 if( the_assoc->usage == ReadOnly )
90 if( lseek( the_assoc->handle, filepos, SEEK_SET ) == -1L )
109 if( the_assoc->ctl_pre )
110 write( the_assoc->handle, &the_assoc->ctl_pre, 1 );
112 write( the_assoc->handle, the_val_addr + 2, actlen );
113 if( the_assoc->ctl_post )
114 write( the_assoc
[all...]
H A Dfileio.h45 __isassociated( Association_Mode* the_assoc, char* file, int line );
48 __existing( Association_Mode* the_assoc, char* file, int line );
51 __readable( Association_Mode* the_assoc, char* file, int line );
54 __writeable( Association_Mode* the_assoc, char* file, int line );
57 __indexable( Association_Mode* the_assoc, char* file, int line );
60 __sequencible( Association_Mode* the_assoc, char* file, int line );
63 __variable( Association_Mode* the_assoc, char* file, int line );
68 __associate( Association_Mode* the_assoc,
77 __dissociate( Association_Mode* the_assoc, char* file, int line );
80 __create( Association_Mode* the_assoc, cha
[all...]

Completed in 102 milliseconds