Searched defs:state (Results 1 - 25 of 720) sorted by relevance

1234567891011>>

/external/zlib/
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);
/external/e2fsprogs/lib/e2p/
H A Dps.c2 * ps.c - Print filesystem state
21 void print_fs_state (FILE * f, unsigned short state) argument
23 if (state & EXT2_VALID_FS)
27 if (state & EXT2_ERROR_FS)
/external/webkit/WebCore/dom/
H A DNodeFilter.cpp32 short NodeFilter::acceptNode(ScriptState* state, Node* node) const argument
35 return m_condition ? m_condition->acceptNode(state, node) : static_cast<short>(FILTER_ACCEPT);
H A DPopStateEvent.h47 SerializedScriptValue* state() const { return m_stateObject.get(); } function in class:WebCore::PopStateEvent
H A DTraversal.cpp41 short Traversal::acceptNode(ScriptState* state, Node* node) const argument
51 return m_filter->acceptNode(state, node);
/external/webkit/WebCore/platform/android/
H A DPlatformTouchPointAndroid.cpp33 PlatformTouchPoint::PlatformTouchPoint(const IntPoint& windowPos, State state) argument
35 , m_state(state)
H A DPlatformTouchEventAndroid.cpp40 PlatformTouchEvent::PlatformTouchEvent(const IntPoint& windowPos, TouchEventType type, PlatformTouchPoint::State state, int metaState) argument
44 m_touchPoints.append(PlatformTouchPoint(windowPos, state));
/external/webkit/LayoutTests/http/tests/appcache/resources/
H A Dfail-on-update.php20 $state = getState($tmpFile); variable
30 } else if ($state == "Uninitialized") {
35 } else if ($state == "Deleted") {
/external/webkit/WebCore/bindings/js/
H A DScriptProfiler.cpp37 void ScriptProfiler::start(ScriptState* state, const String& title) argument
39 JSC::Profiler::profiler()->startProfiling(state, title);
42 PassRefPtr<ScriptProfile> ScriptProfiler::stop(ScriptState* state, const String& title) argument
44 return JSC::Profiler::profiler()->stopProfiling(state, title);
/external/dropbear/libtomcrypt/src/mac/pmac/
H A Dpmac_done.c20 int pmac_done(pmac_state *state, unsigned char *out, unsigned long *outlen) argument
24 LTC_ARGCHK(state != NULL);
26 if ((err = cipher_is_valid(state->cipher_idx)) != CRYPT_OK) {
30 if ((state->buflen > (int)sizeof(state->block)) || (state->buflen < 0) ||
31 (state->block_len > (int)sizeof(state->block)) || (state->buflen > state
[all...]
/external/ppp/pppd/
H A Dsha1.h20 u_int32_t state[5]; member in struct:__anon4087
/external/v8/test/mjsunit/
H A Ddebug-stepin-builtin.js34 var state = 1; variable
44 if (state == 1) {
46 state = 2;
47 } else if (state == 2) {
51 state = 3;
72 state = 1;
75 assertEquals(3, state);
H A Ddebug-stepin-call-function-stub.js33 var state = 0; variable
45 if (state == 0) {
48 state = 2;
49 } else if (state == 2) {
53 state = 3;
86 state = 0;
94 assertEquals(3, state);
102 state = 0;
110 assertEquals(3, state);
H A Ddebug-stepout-to-builtin.js34 var state = 1; variable
44 if (state == 1) {
46 state = 2;
47 } else if (state == 2) {
51 state = 3;
78 state = 1;
81 assertEquals(3, state);
/external/webkit/WebCore/bindings/v8/
H A DScriptProfiler.cpp37 void ScriptProfiler::start(ScriptState* state, const String& title) argument
44 PassRefPtr<ScriptProfile> ScriptProfiler::stop(ScriptState* state, const String& title) argument
H A DScriptCallStack.h54 ScriptState* state() const { return m_scriptState; } function in class:WebCore::ScriptCallStack
/external/grub/stage2/
H A Dconsole.c35 console_setcolorstate (color_state state) argument
37 switch (state) {
52 console_color_state = state;
/external/qemu/distrib/sdl-1.2.12/src/events/
H A DSDL_active.c52 int SDL_PrivateAppActive(Uint8 gain, Uint8 state) argument
57 /* Modify the current state with the given mask */
59 new_state = (SDL_appstate | state);
61 new_state = (SDL_appstate & ~state);
64 /* Drop events that don't change state */
69 /* Update internal active state */
79 event.active.state = state;
87 if ( (state & SDL_APPINPUTFOCUS) && !gain ) {
/external/qemu/distrib/sdl-1.2.12/src/video/dga/
H A DSDL_dgaevents.c96 static XComposeStatus state; local
99 if ( XLookupString(&xkey, keybuf, sizeof(keybuf), NULL, &state) ) {
/external/v8/src/
H A Dlog-inl.h42 inline const char* StateToString(StateTag state) { argument
43 switch (state) {
58 VMState::VMState(StateTag state) : disabled_(true), external_callback_(NULL) { argument
69 if (state == EXTERNAL) state = OTHER;
71 state_ = state;
/external/webkit/WebCore/bindings/v8/custom/
H A DV8NodeIteratorCustom.cpp46 static inline v8::Handle<v8::Value> toV8(PassRefPtr<Node> object, ExceptionCode ec, ScriptState* state) argument
51 if (state->hadException())
52 return throwError(state->exception());
66 EmptyScriptState state; local
67 RefPtr<Node> result = nodeIterator->nextNode(&state, ec);
68 return toV8(result.release(), ec, &state);
77 EmptyScriptState state; local
78 RefPtr<Node> result = nodeIterator->previousNode(&state, ec);
79 return toV8(result.release(), ec, &state);
/external/bluetooth/bluez/sbc/
H A Dsbc_primitives_armv6.c292 void sbc_init_primitives_armv6(struct sbc_encoder_state *state) argument
294 state->sbc_analyze_4b_4s = sbc_analyze_4b_4s_armv6;
295 state->sbc_analyze_4b_8s = sbc_analyze_4b_8s_armv6;
296 state->implementation_info = "ARMv6 SIMD";
/external/guava/src/com/google/common/util/concurrent/
H A DForwardingService.java39 /*@Override*/ public State state() { method in class:ForwardingService
40 return delegate().state();
/external/kernel-headers/original/linux/netfilter/
H A Dnf_conntrack_sctp.h21 enum sctp_conntrack state; member in struct:ip_ct_sctp
/external/nist-sip/java/javax/sip/
H A DDialogState.java12 public static DialogState getObject(int state) { argument
14 return values()[state];
17 "Invalid dialog state: " + state);

Completed in 652 milliseconds

1234567891011>>