Searched defs:ccp (Results 1 - 18 of 18) sorted by relevance

/external/libppp/src/
H A Dlink.h55 struct ccp ccp; /* Our compression FSM */ member in struct:link
H A Dccp.c28 * $FreeBSD: src/usr.sbin/ppp/ccp.c,v 1.78.26.1 2010/12/21 17:10:29 kensmith Exp $
60 #include "ccp.h"
163 struct ccp *ccp; local
167 ccp = &l->ccp;
169 prompt_Printf(arg->prompt, "%s: %s [%s]\n", l->name, ccp->fsm.name,
170 State2Nam(ccp->fsm.state));
171 if (ccp->fsm.state == ST_OPENED) {
173 protoname(ccp
235 ccp_SetupCallbacks(struct ccp *ccp) argument
244 ccp_Init(struct ccp *ccp, struct bundle *bundle, struct link *l, const struct fsm_parent *parent) argument
271 ccp_Setup(struct ccp *ccp) argument
298 ccp_Required(struct ccp *ccp) argument
315 ccp_MTUOverhead(struct ccp *ccp) argument
327 struct ccp *ccp = fsm2ccp(fp); local
347 struct ccp *ccp = fsm2ccp(fp); local
402 struct ccp *ccp = fsm2ccp(fp); local
426 struct ccp *ccp = fsm2ccp(fp); local
436 struct ccp *ccp = fsm2ccp(fp); local
446 struct ccp *ccp = fsm2ccp(fp); local
474 struct ccp *ccp = fsm2ccp(fp); local
501 struct ccp *ccp = fsm2ccp(fp); local
570 struct ccp *ccp = fsm2ccp(fp); local
693 struct ccp *ccp = fsm2ccp(fp); local
788 ccp_Proto(struct ccp *ccp) argument
795 ccp_SetOpenMode(struct ccp *ccp) argument
[all...]
H A Ddeflate.c39 #include "ccp.h"
69 DeflateOutput(void *v, struct ccp *ccp, struct link *l __unused, argument
156 ccp->uncompout += ilen;
157 ccp->compout += ilen; /* We measure this stuff too */
177 ccp->uncompout += ilen;
178 ccp->compout += olen;
183 *proto = ccp_Proto(ccp);
199 DeflateInput(void *v, struct ccp *ccp, u_shor argument
337 DeflateDictSetup(void *v, struct ccp *ccp, u_short proto, struct mbuf *mi) argument
[all...]
H A Dpred.c47 #include "ccp.h"
174 Pred1Output(void *v, struct ccp *ccp, struct link *l __unused, argument
198 ccp->uncompout += orglen;
202 ccp->compout += len;
206 ccp->compout += orglen;
212 *proto = ccp_Proto(ccp);
217 Pred1Input(void *v, struct ccp *ccp, u_short *proto, struct mbuf *bp) argument
234 ccp
[all...]
H A Dccp.h28 * $FreeBSD: src/usr.sbin/ppp/ccp.h,v 1.31.40.1 2010/12/21 17:10:29 kensmith Exp $
91 struct ccp { struct
121 #define fsm2ccp(fp) (fp->proto == PROTO_CCP ? (struct ccp *)fp : NULL)
134 struct mbuf *(*Read)(void *, struct ccp *, u_short *, struct mbuf *);
135 void (*DictSetup)(void *, struct ccp *, u_short, struct mbuf *);
145 struct mbuf *(*Write)(void *, struct ccp *, struct link *, int, u_short *,
150 extern void ccp_Init(struct ccp *, struct bundle *, struct link *,
152 extern void ccp_Setup(struct ccp *);
153 extern int ccp_Required(struct ccp *);
154 extern int ccp_MTUOverhead(struct ccp *);
[all...]
H A Dmppe.c51 #include "ccp.h"
158 MPPEOutput(void *v, struct ccp *ccp, struct link *l __unused, int pri __unused, argument
173 ccp->compout += ilen;
174 ccp->uncompout += ilen;
223 *proto = ccp_Proto(ccp);
225 ccp->uncompout += ilen;
226 ccp->compout += len;
241 MPPEInput(void *v, struct ccp *ccp, u_shor argument
[all...]
/external/clang/test/Sema/
H A Dformat-strings-scanf.c153 const char *ccp, volatile char* vcp,
157 scanf("%s", ccp); // expected-warning{{format specifies type 'char *' but the argument has type 'const char *'}}
152 test_qualifiers(const int *cip, volatile int* vip, const char *ccp, volatile char* vcp, const volatile int *cvip) argument
/external/clang/test/SemaCXX/
H A Dconst-cast.cpp13 typedef cc *ccp; typedef
14 typedef volatile ccp ccvp;
H A Dcstyle-cast.cpp15 typedef cc *ccp; typedef
16 typedef volatile ccp ccvp;
H A Dfunctional-cast.cpp44 typedef cc *ccp; typedef
45 typedef volatile ccp ccvp;
/external/chromium_org/sandbox/win/src/
H A Dipc_unittest.cc309 CrossCallParamsEx* ccp = 0; local
310 ccp = CrossCallParamsEx::CreateFromBuffer(buffer, params_1.GetSize(),
312 ASSERT_TRUE(NULL != ccp);
313 EXPECT_TRUE(ccp->GetBuffer() != buffer);
314 EXPECT_EQ(kTag, ccp->GetTag());
315 EXPECT_EQ(1, ccp->GetParamsCount());
316 delete[] (reinterpret_cast<char*>(ccp));
330 ccp = CrossCallParamsEx::CreateFromBuffer(buffer, params_1.GetSize(),
333 EXPECT_TRUE(NULL == ccp);
343 ccp
[all...]
/external/mksh/src/
H A Dexec.c61 const char *s, *ccp; local
95 (ccp = skip_wdvarname(t->vars[0], true)) != t->vars[0] &&
97 ccp[0] == CHAR && ccp[1] == '=' && ccp[2] == EOS &&
101 size_t n = ccp - t->vars[0] + 2, z;
362 if (!(ccp = do_selectargs(ap, is_first))) {
367 setstr(global(t->str), ccp, KSH_UNWIND_ERROR);
406 ccp = evalstr(t->str, DOTILDE);
410 gmatchx(ccp,
1437 const char * volatile ccp = content; local
[all...]
H A Dvar.c1416 const char *ccp = var; local
1426 ccp = cp;
1428 vp = global(ccp);
1432 errorfx(2, "read-only: %s", ccp);
1455 while ((ccp = vals[i])) {
1456 if (*ccp == '[') {
1459 while (*ccp) {
1460 if (*ccp == ']' && --level == 0)
1462 if (*ccp == '[')
1464 ++ccp;
[all...]
H A Dmain.c195 const char *ccp, **wp; local
225 ccp = kshname;
227 while ((i = ccp[argi++])) {
229 ccp += argi;
232 if (*ccp == '-')
233 ++ccp;
236 if (!*ccp)
237 ccp = empty_argv[0];
244 if (!strcmp(ccp, builtin(mkshbuiltins[i].name,
256 if (!strcmp(ccp, "s
[all...]
H A Dmisc.c447 const char *ccp = NULL; local
451 ccp = skip_varname(array, false);
452 if (!ccp || !(!ccp[0] || (ccp[0] == '+' && !ccp[1]))) {
H A Dfuncs.c1801 const char *ccp; local
1837 if ((fd = coproc_getfd(R_OK, &ccp)) < 0) {
1838 bi_errorf("%s: %s", "-p", ccp);
1861 else if ((fd = check_fd(builtin_opt.optarg, R_OK, &ccp)) < 0) {
1862 bi_errorf("%s: %s: %s", "-u", builtin_opt.optarg, ccp);
1878 if ((ccp = cstrchr(*wp, '?')) != NULL) {
1880 allocd[ccp - *wp] = '\0';
1889 shf_puts(ccp + 1, shl_out);
2043 ccp = cp = Xclose(xs, xp);
2063 while (bytesread && is_ifsws(*ccp)) {
[all...]
/external/harfbuzz/src/
H A Dharfbuzz-gpos.c4959 HB_ChainContextPos* ccp = &st->chain; local
4965 ccp->PosFormat = GET_UShort();
4969 switch ( ccp->PosFormat )
4972 return Load_ChainContextPos1( &ccp->ccpf.ccpf1, stream );
4975 return Load_ChainContextPos2( &ccp->ccpf.ccpf2, stream );
4978 return Load_ChainContextPos3( &ccp->ccpf.ccpf3, stream );
4990 HB_ChainContextPos* ccp = &st->chain; local
4992 switch ( ccp->PosFormat )
4994 case 1: Free_ChainContextPos1( &ccp->ccpf.ccpf1 ); break;
4995 case 2: Free_ChainContextPos2( &ccp
5455 HB_ChainContextPos* ccp = &st->chain; local
[all...]
/external/harfbuzz_ng/src/hb-old/
H A Dharfbuzz-gpos.c4959 HB_ChainContextPos* ccp = &st->chain; local
4965 ccp->PosFormat = GET_UShort();
4969 switch ( ccp->PosFormat )
4972 return Load_ChainContextPos1( &ccp->ccpf.ccpf1, stream );
4975 return Load_ChainContextPos2( &ccp->ccpf.ccpf2, stream );
4978 return Load_ChainContextPos3( &ccp->ccpf.ccpf3, stream );
4990 HB_ChainContextPos* ccp = &st->chain; local
4992 switch ( ccp->PosFormat )
4994 case 1: Free_ChainContextPos1( &ccp->ccpf.ccpf1 ); break;
4995 case 2: Free_ChainContextPos2( &ccp
5455 HB_ChainContextPos* ccp = &st->chain; local
[all...]

Completed in 426 milliseconds