Searched refs:state (Results 51 - 59 of 59) sorted by path

123

/system/extras/ext4_utils/
H A Dsha1.c126 void SHA1Transform(state, buffer)
127 u_int32_t state[5];
138 assert(state != 0);
147 /* Copy context->state[] to working vars */
148 a = state[0];
149 b = state[1];
150 c = state[2];
151 d = state[3];
152 e = state[4];
183 /* Add the working vars back into context.state[] */
[all...]
H A Dsha1.h31 uint32_t state[5]; member in struct:__anon498
/system/extras/tests/fstest/
H A Dperm_checker.conf124 /sys/android_power/state 664 664 radio radio system system
127 /sys/qemu_trace/state 000 777 root system root system
/system/media/audio_utils/
H A Decho_reference.c28 // echo reference state: bit field indicating if read, write or both are active.
29 enum state { enum
38 uint32_t state; // active state: reading, writing or both member in struct:echo_reference
143 er->state &= ~ECHOREF_WRITING;
161 if ((er->state & ECHOREF_WRITING) == 0) {
166 er->state |= ECHOREF_WRITING;
169 if ((er->state & ECHOREF_READING) == 0) {
304 er->state &= ~ECHOREF_READING;
312 if ((er->state
[all...]
/system/netd/
H A DNetlinkHandler.cpp80 const char *state = evt->findParam("STATE"); local
85 if (state)
86 notifyInterfaceClassActivity(label, !strcmp("active", state));
/system/security/keystore/
H A Dkeystore.cpp695 void setState(State state) { argument
696 mState = state;
1335 State state; member in struct:action
1392 if (action->state != STATE_ANY && action->state != keyStore->getState()) {
1463 ALOGI("uid: %d action: %c -> %d state: %d -> %d retry: %d",
/system/vold/
H A DDirectVolume.cpp299 int state; local
309 state = getState();
310 if (state != Volume::State_Mounted && state != Volume::State_Shared) {
335 } else if (state == Volume::State_Shared) {
H A DVolume.cpp90 static const char *stateToStr(int state) { argument
91 if (state == Volume::State_Init)
93 else if (state == Volume::State_NoMedia)
95 else if (state == Volume::State_Idle)
97 else if (state == Volume::State_Pending)
99 else if (state == Volume::State_Mounted)
101 else if (state == Volume::State_Unmounting)
103 else if (state == Volume::State_Checking)
105 else if (state == Volume::State_Formatting)
107 else if (state
173 setState(int state) argument
[all...]
H A DVolume.h86 void setState(int state);

Completed in 114 milliseconds

123