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

12345

/system/wlan/ti/sta_dk_4_0_4_32/CUDK/Inc/
H A DsoftGeminiTypes.h34 BOOL state; member in struct:__anon186
/system/wlan/ti/sta_dk_4_0_4_32/common/inc/
H A DsoftGeminiTypes.h49 BOOL state; member in struct:__anon364
/system/core/nexus/
H A DSupplicantStatus.cpp33 SupplicantStatus::SupplicantStatus(int state, int id, char *bssid, char *ssid) : argument
34 mWpaState(state), mId(id), mBssid(bssid), mSsid(ssid) {
36 LOGD("state %d, id %d, bssid %p, ssid %p\n", mWpaState, mId, mBssid, mSsid);
50 int state = SupplicantState::UNKNOWN; local
66 state = SupplicantState::DISCONNECTED;
68 state = SupplicantState::INACTIVE;
70 state = SupplicantState::SCANNING;
72 state = SupplicantState::ASSOCIATING;
74 state = SupplicantState::ASSOCIATED;
76 state
[all...]
H A DSupplicantStateChangeEvent.h28 SupplicantStateChangeEvent(int state);
H A DSupplicantStateChangeEvent.cpp35 mState = atoi(p + strlen("state=") + 1);
38 SupplicantStateChangeEvent::SupplicantStateChangeEvent(int state) : argument
40 mState = state;
H A DSupplicantStatus.h29 SupplicantStatus(int state, int id, char *bssid, char *ssid);
H A DIDhcpEventHandlers.h24 virtual void onDhcpStateChanged(Controller *c, int state) = 0;
/system/core/libpixelflinger/
H A Dclear.cpp42 c->state.clear.dirty = GGL_STENCIL_BUFFER_BIT |
45 c->state.clear.depth = FIXED_ONE;
99 const uint32_t l = c->state.scissor.left;
100 const uint32_t t = c->state.scissor.top;
101 uint32_t w = c->state.scissor.right - l;
102 uint32_t h = c->state.scissor.bottom - t;
108 if (c->state.buffers.color.format == 0)
111 if (c->state.buffers.depth.format == 0)
114 if (c->state.buffers.stencil.format == 0)
118 if (c->state
[all...]
H A Dpixelflinger.cpp106 ggl_set_surface(c, &c->state.texture[tmu].surface, surface);
112 if (surface->format != c->state.buffers.color.format)
115 if (surface->width > c->state.buffers.coverageBufferSize) {
117 free(c->state.buffers.coverage);
118 c->state.buffers.coverage = (int16_t*)malloc(surface->width * 2);
119 c->state.buffers.coverageBufferSize =
120 c->state.buffers.coverage ? surface->width : 0;
122 ggl_set_surface(c, &(c->state.buffers.color), surface);
123 if (c->state.buffers.read.format == 0) {
124 ggl_set_surface(c, &(c->state
[all...]
H A Draster.cpp44 c->state.raster.x = x;
45 c->state.raster.y = y;
59 surface_t* cb = &(c->state.buffers.color);
72 GGLint xd = gglFixedToIntRound(c->state.raster.x);
73 GGLint yd = gglFixedToIntRound(c->state.raster.y);
76 if (xd < GGLint(c->state.scissor.left)) {
77 GGLint offset = GGLint(c->state.scissor.left) - xd;
78 xd = GGLint(c->state.scissor.left);
82 if (yd < GGLint(c->state.scissor.top)) {
83 GGLint offset = GGLint(c->state
[all...]
H A Dpicker.cpp39 const uint32_t enables = c->state.enables;
40 needs_t new_needs(c->state.needs);
44 new_needs.n |= GGL_BUILD_NEEDS(c->state.buffers.color.format, CB_FORMAT);
50 uint32_t n = GGL_BUILD_NEEDS(c->state.buffers.color.format, CB_FORMAT);
53 uint32_t src = c->state.blend.src;
54 uint32_t dst = c->state.blend.dst;
55 uint32_t src_alpha = c->state.blend.src_alpha;
56 uint32_t dst_alpha = c->state.blend.dst_alpha;
57 const GGLFormat& cbf = c->formats[ c->state.buffers.color.format ];
84 if (c->state
[all...]
/system/core/init/
H A Dparser.c76 void (*parse_line)(struct parse_state *state, int nargs, char **args);
80 static void *parse_service(struct parse_state *state, int nargs, char **args);
81 static void parse_line_service(struct parse_state *state, int nargs, char **args);
83 static void *parse_action(struct parse_state *state, int nargs, char **args);
84 static void parse_line_action(struct parse_state *state, int nargs, char **args);
86 void parse_error(struct parse_state *state, const char *fmt, ...) argument
92 snprintf(buf, 128, "%s: %d: ", state->filename, state->line);
208 void parse_line_no_op(struct parse_state *state, int nargs, char **args) argument
212 int next_token(struct parse_state *state) argument
337 parse_new_section(struct parse_state *state, int kw, int nargs, char **args) argument
363 struct parse_state state; local
580 parse_service(struct parse_state *state, int nargs, char **args) argument
615 parse_line_service(struct parse_state *state, int nargs, char **args) argument
778 parse_action(struct parse_state *state, int nargs, char **args) argument
797 parse_line_action(struct parse_state* state, int nargs, char **args) argument
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/common/src/utils/
H A Dnrfsm.c2 * \brief non-recursive finite state machine source code
72 UINT32 state; /**< Current state */ member in struct:__anon946
204 * I/O - pMatrix - the state event matrix pointer
241 pFsm->state = 0;
279 if (pFsm->state >= pFsm->uActNoOfStates || event >= pFsm->uActNoOfEvents)
305 uIndex = pFsm->state * pFsm->uActNoOfEvents + pFsm->event;
307 /* Update current state */
308 pFsm->state = pFsm->matrix[uIndex].nState;
322 * nrfsm_SetState - Set the initial state
339 nrfsm_SetState(TI_HANDLE hFsm, UINT32 state) argument
375 nrfsm_GetState(TI_HANDLE hFsm, UINT32 *state) argument
405 nrfsm_GetNextState(TI_HANDLE hFsm, UINT32 event, UINT32 *state) argument
[all...]
H A Dnrfsm.h2 * \brief non-recursive finite state machine header file
67 UINT32 nState; /**< next state in transition */
98 UINT32 *state);
101 UINT32 state);
105 UINT32 *state);
/system/core/sh/
H A Dmain.c96 * exception occurs. When an exception occurs the variable "state"
105 volatile int state; local
111 state = 0;
123 state = 3;
139 if (state == 0 || iflag == 0 || ! rootshell)
153 if (state == 1)
155 else if (state == 2)
157 else if (state == 3)
176 state = 1;
179 state
[all...]
/system/wlan/ti/wilink_6_1/Test/
H A DconnDebug.c66 WLAN_OS_REPORT(("Invalid param type in Set Debug Connection command: %d, curr state %d\n\n", value, pConn->state));
80 WLAN_OS_REPORT(("Invalid param type in Get Debug Connection command: %d, curr state %d\n\n", value, pConn->state));
100 WLAN_OS_REPORT(("Connection Print Test, param = %d , curr state %d\n\n", *((TI_UINT32 *)pParam), pConn->state));
/system/core/toolbox/
H A Dnetstat.c42 static const char *state2str(unsigned state) argument
44 switch(state){
77 unsigned lport, rport, state, txq, rxq, num; local
89 &state, &txq, &rxq);
96 state2str(state));
107 &state, &txq, &rxq);
H A Dvmstat.c38 struct state { struct
64 static void read_state(struct state *s);
65 static int read_meminfo(struct state *s);
66 static int read_stat(struct state *s);
67 static int read_vmstat(struct state *s);
69 static void print_line(struct state *old, struct state *new);
73 struct state s[2];
137 static void read_state(struct state *s) {
159 static int read_meminfo(struct state *
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/common/src/TNETW_Driver/TNETWIF/ELP_Controller/
H A DElpCtrl.c73 elpCtrl_State_e state; member in struct:_elpCtrl_t
205 pElpCtrl->state = ELPS_AWAKE;
233 pElpCtrl->state = ELPS_AWAKE;
247 switch(pElpCtrl->state)
251 pElpCtrl->state = ELPS_WAKING_UP_WRITE;
263 pElpCtrl->state = ELPS_WAKING_UP_READ;
278 pElpCtrl->state = ELPS_AWAKE;
290 pElpCtrl->state = ELPS_WAKING_UP_MUX;
324 WLAN_OS_REPORT(("Error: %s state = %d\n", __FUNCTION__, pElpCtrl->state));
[all...]
/system/core/adb/
H A Dfdevent.c51 fde->state & FDE_READ ? 'R' : ' ',
52 fde->state & FDE_WRITE ? 'W' : ' ',
53 fde->state & FDE_ERROR ? 'E' : ' ',
137 active = (fde->state & FDE_EVENTMASK) != 0;
147 fde->state = (fde->state & FDE_STATEMASK) | events;
206 if(fde->state & FDE_PENDING) continue;
207 fde->state |= FDE_PENDING;
273 fde->state = (fde->state
[all...]
/system/core/libmincrypt/
H A Dsha.c56 A = ctx->state[0];
57 B = ctx->state[1];
58 C = ctx->state[2];
59 D = ctx->state[3];
60 E = ctx->state[4];
140 ctx->state[0] += A;
141 ctx->state[1] += B;
142 ctx->state[2] += C;
143 ctx->state[3] += D;
144 ctx->state[
[all...]
/system/core/include/mincrypt/
H A Dsha.h39 uint32_t state[5]; member in struct:SHA_CTX
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/srv/scr/
H A Dscr.h90 scr_clientState_e state; /**< the client current state */ member in struct:__anon699
129 * \brief Searches the client database for a client with matching state, from startFrom to endAt\n
133 * \param requiredState - the state to match.\n
H A Dscr.c235 pScr->clientArray[ i ].state = SCR_CS_IDLE;
345 if ( (pScr->clientArray[ i ].state == SCR_CS_PENDING) && /* the client is pending */
373 pScr->clientArray[ highestPending ].state = SCR_CS_RUNNING;
424 pScr->clientArray[ pScr->runningClient ].state = SCR_CS_ABORTING;
446 if ( (pScr->clientArray[ i ].state == SCR_CS_PENDING) && /* the client is pending */
474 pScr->clientArray[ highestPending ].state = SCR_CS_RUNNING;
541 pScr->clientArray[ client ].state = SCR_CS_PENDING;
552 pScr->clientArray[ client ].state = SCR_CS_RUNNING;
558 if ( SCR_CS_ABORTING == pScr->clientArray[ pScr->runningClient ].state )
594 pScr->clientArray[ client ].state
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/common/src/TNETW_Driver/FW_Transfer/Tx_Result/
H A DtxResult.c210 if (TX_RESULT_STATE_IDLE != pTxResult->state)
213 ("rxXfer_RxEvent called in state %d !!!\n",pTxResult->state));
230 * DESCRIPTION: main SM of the module.called in IDLE state by txResult_TxCmpltIntrCB() on
238 * On synch mode - each state is called in the same context in the while loop.
239 * On Asynch mode - each state returns TNETWIF_PENDING and exits the SM.The CB of
265 ("txResult SM: state = %d, rc = %d, Buffers = %d\n",
266 pTxResult->state,pTxResult->returnValue,pTxResult->numOfBuffers));
268 switch(pTxResult->state)
279 pTxResult->state
[all...]

Completed in 3406 milliseconds

12345