• Home
  • Raw
  • Download

Lines Matching full:me

61 extern void BufBound_Init(BufBound *me, char *pBuf, int nLen);
62 extern void BufBound_Write(BufBound *me, const char *pc, int nLen);
63 extern void BufBound_Putc(BufBound *me, char c);
64 extern void BufBound_Putnc(BufBound *me, char c, int nCount);
65 extern void BufBound_ForceNullTerm(BufBound *me);
66 extern void BufBound_Puts(BufBound *me, const char* cpsz);
67 extern void BufBound_Advance(BufBound *me, int nLen);
68 extern void BufBound_WriteLE(BufBound* me,
71 extern void BufBound_WriteBE(BufBound* me,
74 extern int BufBound_BufSize(BufBound *me);
75 extern int BufBound_Left(BufBound* me);
76 extern int BufBound_ReallyWrote(BufBound* me);
77 extern int BufBound_Wrote(BufBound* me);
79 static __inline int BufBound_IsFull(BufBound* me) in BufBound_IsFull() argument
81 return (BufBound_Left(me) <= 0); in BufBound_IsFull()
85 static __inline int BufBound_IsCounter(BufBound* me) in BufBound_IsCounter() argument
87 return BufBound_BufSize(me) == 0; in BufBound_IsCounter()
156 void BufBound_Init(BufBound *me, char *pBuf, int nLen);
159 me: the BufBound
186 void BufBound_Write(BufBound *me, const char *pc, int nLen);
189 me: the BufBound
222 void BufBound_Advance(BufBound *me, int nDelta);
225 me: the BufBound
249 void BufBound_Putc(BufBound *me, char c);
252 me: the BufBound
280 void BufBound_Putnc(BufBound *me, char c, int nCount);
283 me: the BufBound
311 void BufBound_ForceNullTerm(BufBound *me);
314 me: the BufBound
338 void BufBound_Puts(BufBound *me, const char* cpsz);
341 me: the BufBound
367 int BufBound_IsCounter(BufBound* me);
370 me: the BufBound
396 int BufBound_Left(BufBound* me);
399 me: the BufBound
425 int BufBound_ReallyWrote(BufBound* me);
428 me: the BufBound
455 int BufBound_Wrote(BufBound* me);
458 me: the BufBound
483 int BufBound_IsFull(BufBound* me);
486 me: the BufBound
517 void BufBound_WriteLE(BufBound* me,
522 me: the BufBound
548 void BufBound_WriteBE(BufBound* me,
553 me: the BufBound