mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-24 11:41:58 +00:00
venti.h: import indentation from plan 9
R=rsc CC=plan9port.codebot http://codereview.appspot.com/4571065
This commit is contained in:
parent
8aeb3ea1c0
commit
79793adc21
1 changed files with 144 additions and 142 deletions
|
@ -17,27 +17,28 @@ enum
|
|||
};
|
||||
|
||||
typedef struct Packet Packet;
|
||||
|
||||
Packet* packetalloc(void);
|
||||
void packetfree(Packet*);
|
||||
Packet *packetforeign(uchar *buf, int n, void (*free)(void *a), void *a);
|
||||
Packet *packetdup(Packet*, int offset, int n);
|
||||
Packet *packetsplit(Packet*, int n);
|
||||
int packetconsume(Packet*, uchar *buf, int n);
|
||||
int packettrim(Packet*, int offset, int n);
|
||||
uchar *packetheader(Packet*, int n);
|
||||
uchar *packettrailer(Packet*, int n);
|
||||
void packetprefix(Packet*, uchar *buf, int n);
|
||||
void packetappend(Packet*, uchar *buf, int n);
|
||||
void packetconcat(Packet*, Packet*);
|
||||
uchar *packetpeek(Packet*, uchar *buf, int offset, int n);
|
||||
int packetcopy(Packet*, uchar *buf, int offset, int n);
|
||||
int packetfragments(Packet*, IOchunk*, int nio, int offset);
|
||||
uint packetsize(Packet*);
|
||||
uint packetasize(Packet*);
|
||||
int packetcompact(Packet*);
|
||||
int packetcmp(Packet*, Packet*);
|
||||
void packetstats(void);
|
||||
int packetcompact(Packet*);
|
||||
void packetconcat(Packet*, Packet*);
|
||||
int packetconsume(Packet*, uchar *buf, int n);
|
||||
int packetcopy(Packet*, uchar *buf, int offset, int n);
|
||||
Packet* packetdup(Packet*, int offset, int n);
|
||||
Packet* packetforeign(uchar *buf, int n, void (*free)(void *a), void *a);
|
||||
int packetfragments(Packet*, IOchunk*, int nio, int offset);
|
||||
void packetfree(Packet*);
|
||||
uchar* packetheader(Packet*, int n);
|
||||
uchar* packetpeek(Packet*, uchar *buf, int offset, int n);
|
||||
void packetprefix(Packet*, uchar *buf, int n);
|
||||
void packetsha1(Packet*, uchar sha1[20]);
|
||||
uint packetsize(Packet*);
|
||||
Packet* packetsplit(Packet*, int n);
|
||||
void packetstats(void);
|
||||
uchar* packettrailer(Packet*, int n);
|
||||
int packettrim(Packet*, int offset, int n);
|
||||
|
||||
/* XXX should be own library? */
|
||||
/*
|
||||
|
@ -365,8 +366,8 @@ void vtrespond(VtReq*);
|
|||
/* client */
|
||||
Packet* vtrpc(VtConn*, Packet*);
|
||||
Packet* _vtrpc(VtConn*, Packet*, VtFcall*);
|
||||
void vtrecvproc(void*); /* VtConn* */
|
||||
void vtsendproc(void*); /* VtConn* */
|
||||
void vtrecvproc(void*); /* VtConn */
|
||||
void vtsendproc(void*); /* VtConn */
|
||||
|
||||
int vtconnect(VtConn*);
|
||||
int vthello(VtConn*);
|
||||
|
@ -419,7 +420,8 @@ void vtcachefree(VtCache*);
|
|||
VtBlock*vtcachelocal(VtCache*, u32int addr, int type);
|
||||
VtBlock*vtcacheglobal(VtCache*, uchar[VtScoreSize], int type, ulong size);
|
||||
VtBlock*vtcacheallocblock(VtCache*, int type, ulong size);
|
||||
void vtcachesetwrite(VtCache*, int(*)(VtConn*,uchar[VtScoreSize],uint,uchar*,int));
|
||||
void vtcachesetwrite(VtCache*,
|
||||
int(*)(VtConn*, uchar[VtScoreSize], uint, uchar*, int));
|
||||
void vtblockput(VtBlock*);
|
||||
int vtblockwrite(VtBlock*);
|
||||
VtBlock*vtblockcopy(VtBlock*);
|
||||
|
@ -460,32 +462,32 @@ enum
|
|||
VtORDWR
|
||||
};
|
||||
|
||||
VtFile *vtfileopenroot(VtCache*, VtEntry*);
|
||||
VtFile *vtfilecreateroot(VtCache*, int psize, int dsize, int type);
|
||||
VtFile *vtfileopen(VtFile*, u32int, int);
|
||||
VtFile *vtfilecreate(VtFile*, int psize, int dsize, int dir);
|
||||
VtFile *_vtfilecreate(VtFile*, int offset, int psize, int dsize, int dir);
|
||||
VtBlock*vtfileblock(VtFile*, u32int, int mode);
|
||||
long vtfileread(VtFile*, void*, long, vlong);
|
||||
long vtfilewrite(VtFile*, void*, long, vlong);
|
||||
int vtfileflush(VtFile*);
|
||||
void vtfileincref(VtFile*);
|
||||
void vtfileclose(VtFile*);
|
||||
int vtfilegetentry(VtFile*, VtEntry*);
|
||||
int vtfilesetentry(VtFile*, VtEntry*);
|
||||
int vtfileblockscore(VtFile*, u32int, uchar[VtScoreSize]);
|
||||
u32int vtfilegetdirsize(VtFile*);
|
||||
int vtfilesetdirsize(VtFile*, u32int);
|
||||
void vtfileunlock(VtFile*);
|
||||
int vtfilelock(VtFile*, int);
|
||||
int vtfilelock2(VtFile*, VtFile*, int);
|
||||
void vtfileclose(VtFile*);
|
||||
VtFile* _vtfilecreate(VtFile*, int offset, int psize, int dsize, int dir);
|
||||
VtFile* vtfilecreate(VtFile*, int psize, int dsize, int dir);
|
||||
VtFile* vtfilecreateroot(VtCache*, int psize, int dsize, int type);
|
||||
int vtfileflush(VtFile*);
|
||||
int vtfileflushbefore(VtFile*, u64int);
|
||||
int vtfiletruncate(VtFile*);
|
||||
u32int vtfilegetdirsize(VtFile*);
|
||||
int vtfilegetentry(VtFile*, VtEntry*);
|
||||
uvlong vtfilegetsize(VtFile*);
|
||||
int vtfilesetsize(VtFile*, u64int);
|
||||
void vtfileincref(VtFile*);
|
||||
int vtfilelock2(VtFile*, VtFile*, int);
|
||||
int vtfilelock(VtFile*, int);
|
||||
VtFile* vtfileopen(VtFile*, u32int, int);
|
||||
VtFile* vtfileopenroot(VtCache*, VtEntry*);
|
||||
long vtfileread(VtFile*, void*, long, vlong);
|
||||
int vtfileremove(VtFile*);
|
||||
int vtfilesetdirsize(VtFile*, u32int);
|
||||
int vtfilesetentry(VtFile*, VtEntry*);
|
||||
int vtfilesetsize(VtFile*, u64int);
|
||||
int vtfiletruncate(VtFile*);
|
||||
void vtfileunlock(VtFile*);
|
||||
long vtfilewrite(VtFile*, void*, long, vlong);
|
||||
|
||||
extern int vttimefmt(Fmt*);
|
||||
int vttimefmt(Fmt*);
|
||||
|
||||
extern int chattyventi;
|
||||
extern int ventidoublechecksha1;
|
||||
|
|
Loading…
Reference in a new issue