Searched refs:state (Results 1 - 25 of 3422) sorted by relevance

1234567891011>>

/forgerock/web-agents-v4/zlib/
H A Dgzread.c17 state->fd, and update state->eof, state->err, and state->msg as appropriate.
20 local int gz_load(state, buf, len, have)
21 gz_statep state;
30 ret = read(state->fd, buf + *have, len - *have);
36 gz_error(state, Z_ERRNO, zstrerror());
40 state->eof = 1;
51 local int gz_avail(state)
294 gz_statep state; local
392 gz_statep state; local
427 gz_statep state; local
491 gz_statep state; local
550 gz_statep state; local
571 gz_statep state; local
[all...]
H A Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
95 local void fixedtables OF((struct inflate_state FAR *state));
107 struct inflate_state FAR *state; local
109 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
110 state = (struct inflate_state FAR *)strm->state;
111 strm->total_in = strm->total_out = state->total = 0;
113 if (state
132 struct inflate_state FAR *state; local
147 struct inflate_state FAR *state; local
187 struct inflate_state FAR *state; local
235 struct inflate_state FAR *state; local
328 struct inflate_state state; local
384 struct inflate_state FAR *state; local
609 struct inflate_state FAR *state; local
[all...]
H A Dgzlib.c74 /* Reset gzip file state */
75 local void gz_reset(state)
76 gz_statep state;
78 state->x.have = 0; /* no output data available */
79 if (state->mode == GZ_READ) { /* for reading ... */
80 state->eof = 0; /* not at end of file */
81 state->past = 0; /* have not read past end yet */
82 state->how = LOOK; /* look for gzip header */
84 state->seek = 0; /* no seek request pending */
85 gz_error(state, Z_O
96 gz_statep state; local
318 gz_statep state; local
342 gz_statep state; local
369 gz_statep state; local
454 gz_statep state; local
482 gz_statep state; local
514 gz_statep state; local
532 gz_statep state; local
552 gz_statep state; local
[all...]
H A Dgzwrite.c13 /* Initialize state for writing a gzip file. Mark initialization by setting
14 state->size to non-zero. Return -1 on failure or 0 on success. */
15 local int gz_init(state)
16 gz_statep state;
19 z_streamp strm = &(state->strm);
22 state->in = (unsigned char *)malloc(state->want);
23 if (state->in == NULL) {
24 gz_error(state, Z_MEM_ERROR, "out of memory");
28 /* only need output buffer and deflate state i
171 gz_statep state; local
251 gz_statep state; local
313 gz_statep state; local
394 gz_statep state; local
469 gz_statep state; local
502 gz_statep state; local
543 gz_statep state; local
[all...]
H A Dinfback.c19 local void fixedtables OF((struct inflate_state FAR *state));
35 struct inflate_state FAR *state; local
58 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
60 if (state == Z_NULL) return Z_MEM_ERROR;
62 strm->state = (struct internal_state FAR *)state;
63 state->dmax = 32768U;
64 state->wbits = windowBits;
65 state->wsize = 1U << windowBits;
66 state
257 struct inflate_state FAR *state; local
[all...]
H A Dgzclose.c15 gz_statep state; local
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
/forgerock/openam-v13/openam-sts/openam-token-service-sts/src/main/java/org/forgerock/openam/sts/tokengeneration/state/
H A Dpackage-info.java18 * The classes in this package pertain to pulling and caching sts-instance state from the SMS, and the registration
21 package org.forgerock.openam.sts.tokengeneration.state
/forgerock/openam/openam-sts/openam-token-service-sts/src/main/java/org/forgerock/openam/sts/tokengeneration/state/
H A Dpackage-info.java18 * The classes in this package pertain to pulling and caching sts-instance state from the SMS, and the registration
21 package org.forgerock.openam.sts.tokengeneration.state
/forgerock/openam-v13/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/packet/
H A DProxyStateAttribute.java48 private String state = null; field in class:ProxyStateAttribute
58 state = new String(octets, 2, octets.length - 2);
65 * @param state the opaque string
67 public ProxyStateAttribute(String state) { argument
68 super(OctetUtils.toOctets(AttributeType.PROXY_STATE, state));
69 this.state = new String(super.getOctets(), 2, super.getOctets().length - 2);
73 * Returns the opaque state string.
75 * @return the opaque state string.
78 return state;
87 return state;
[all...]
/forgerock/openam/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/packet/
H A DProxyStateAttribute.java48 private String state = null; field in class:ProxyStateAttribute
58 state = new String(octets, 2, octets.length - 2);
65 * @param state the opaque string
67 public ProxyStateAttribute(String state) { argument
68 super(OctetUtils.toOctets(AttributeType.PROXY_STATE, state));
69 this.state = new String(super.getOctets(), 2, super.getOctets().length - 2);
73 * Returns the opaque state string.
75 * @return the opaque state string.
78 return state;
87 return state;
[all...]
/forgerock/web-agents-v4/expat/
H A Dxmlrole.c93 #define setTopLevel(state) \
94 ((state)->handler = ((state)->documentEntity \
98 #define setTopLevel(state) ((state)->handler = internalSubset)
101 typedef int PTRCALL PROLOG_HANDLER(PROLOG_STATE *state,
125 static int FASTCALL common(PROLOG_STATE *state, int tok);
128 prolog0(PROLOG_STATE *state, argument
136 state->handler = prolog1;
139 state
165 prolog1(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
196 prolog2(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
217 doctype0(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
235 doctype1(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
265 doctype2(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
282 doctype3(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
299 doctype4(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
319 doctype5(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
336 internalSubset(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
393 externalSubset0(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
406 externalSubset1(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
438 entity0(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
458 entity1(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
475 entity2(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
503 entity3(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
520 entity4(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
537 entity5(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
560 entity6(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
578 entity7(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
606 entity8(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
623 entity9(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
640 entity10(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
657 notation0(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
674 notation1(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
698 notation2(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
715 notation3(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
733 notation4(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
754 attlist0(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
772 attlist1(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
793 attlist2(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
834 attlist3(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
853 attlist4(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
873 attlist5(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
890 attlist6(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
907 attlist7(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
928 attlist8(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
968 attlist9(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
985 element0(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
1003 element1(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
1033 element2(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
1073 element3(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
1098 element4(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
1116 element5(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
1137 element6(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
1167 element7(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
1217 condSect0(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
1241 condSect1(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
1259 condSect2(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
1278 declClose(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
1295 error(PROLOG_STATE *state, int tok, const char *ptr, const char *end, const ENCODING *enc) argument
1305 common(PROLOG_STATE *state, int tok) argument
1316 XmlPrologStateInit(PROLOG_STATE *state) argument
1329 XmlPrologStateInitExternalEntity(PROLOG_STATE *state) argument
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/browser/
H A DBasicNodeError.java36 private NodeRefresher.State state; field in class:BasicNodeError
42 * @param state the state of the refresher when the exception occurred.
46 public BasicNodeError(NodeRefresher.State state, Exception x, Object arg) { argument
47 this.state = state;
53 * Returns the state of the refresher when the exception occurred.
54 * @return the state of the refresher when the exception occurred.
57 return state;
H A DSearchAbandonException.java37 private NodeRefresher.State state; field in class:SearchAbandonException
43 * @param state the state in which the refresher is.
47 SearchAbandonException(NodeRefresher.State state, Exception x, Object arg) { argument
48 this.state = state;
54 * Returns the state the refresher was when the exception occurred.
55 * @return the state the refresher was when the exception occurred.
58 return state;
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/browser/
H A DBasicNodeError.java37 private NodeRefresher.State state; field in class:BasicNodeError
43 * @param state the state of the refresher when the exception occurred.
47 public BasicNodeError(NodeRefresher.State state, Exception x, Object arg) { argument
48 this.state = state;
54 * Returns the state of the refresher when the exception occurred.
55 * @return the state of the refresher when the exception occurred.
58 return state;
H A DSearchAbandonException.java38 private NodeRefresher.State state; field in class:SearchAbandonException
44 * @param state the state in which the refresher is.
48 SearchAbandonException(NodeRefresher.State state, Exception x, Object arg) { argument
49 this.state = state;
55 * Returns the state the refresher was when the exception occurred.
56 * @return the state the refresher was when the exception occurred.
59 return state;
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/browser/
H A DBasicNodeError.java37 private NodeRefresher.State state; field in class:BasicNodeError
43 * @param state the state of the refresher when the exception occurred.
47 public BasicNodeError(NodeRefresher.State state, Exception x, Object arg) { argument
48 this.state = state;
54 * Returns the state of the refresher when the exception occurred.
55 * @return the state of the refresher when the exception occurred.
58 return state;
H A DSearchAbandonException.java38 private NodeRefresher.State state; field in class:SearchAbandonException
44 * @param state the state in which the refresher is.
48 SearchAbandonException(NodeRefresher.State state, Exception x, Object arg) { argument
49 this.state = state;
55 * Returns the state the refresher was when the exception occurred.
56 * @return the state the refresher was when the exception occurred.
59 return state;
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/browser/
H A DBasicNodeError.java36 private NodeRefresher.State state; field in class:BasicNodeError
42 * @param state the state of the refresher when the exception occurred.
46 public BasicNodeError(NodeRefresher.State state, Exception x, Object arg) { argument
47 this.state = state;
53 * Returns the state of the refresher when the exception occurred.
54 * @return the state of the refresher when the exception occurred.
57 return state;
H A DSearchAbandonException.java37 private NodeRefresher.State state; field in class:SearchAbandonException
43 * @param state the state in which the refresher is.
47 SearchAbandonException(NodeRefresher.State state, Exception x, Object arg) { argument
48 this.state = state;
54 * Returns the state the refresher was when the exception occurred.
55 * @return the state the refresher was when the exception occurred.
58 return state;
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/browser/
H A DBasicNodeError.java37 private NodeRefresher.State state; field in class:BasicNodeError
43 * @param state the state of the refresher when the exception occurred.
47 public BasicNodeError(NodeRefresher.State state, Exception x, Object arg) { argument
48 this.state = state;
54 * Returns the state of the refresher when the exception occurred.
55 * @return the state of the refresher when the exception occurred.
58 return state;
H A DSearchAbandonException.java38 private NodeRefresher.State state; field in class:SearchAbandonException
44 * @param state the state in which the refresher is.
48 SearchAbandonException(NodeRefresher.State state, Exception x, Object arg) { argument
49 this.state = state;
55 * Returns the state the refresher was when the exception occurred.
56 * @return the state the refresher was when the exception occurred.
59 return state;
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/browser/
H A DBasicNodeError.java36 private NodeRefresher.State state; field in class:BasicNodeError
42 * @param state the state of the refresher when the exception occurred.
46 public BasicNodeError(NodeRefresher.State state, Exception x, Object arg) { argument
47 this.state = state;
53 * Returns the state of the refresher when the exception occurred.
54 * @return the state of the refresher when the exception occurred.
57 return state;
H A DSearchAbandonException.java37 private NodeRefresher.State state; field in class:SearchAbandonException
43 * @param state the state in which the refresher is.
47 SearchAbandonException(NodeRefresher.State state, Exception x, Object arg) { argument
48 this.state = state;
54 * Returns the state the refresher was when the exception occurred.
55 * @return the state the refresher was when the exception occurred.
58 return state;
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/store/reducers/
H A Dserver.jsm25 const server = function (state = initialState, action) {
28 default: return state;
/forgerock/openam-v13/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/
H A DStateAttribute.java43 * The opaque state string.
45 private String state = null; field in class:StateAttribute
51 * the opaque state string.
55 state = new String(super.getOctets(), 2, super.getOctets().length - 2, Charset.forName("utf-8"));
66 state = new String(octets, 2, octets.length - 2, Charset.forName("utf-8"));
70 * Returns the contained state string.
72 * @return the contained state string.
75 return state;
84 return state;

Completed in 154 milliseconds

1234567891011>>