Home | History | Annotate | Download | only in src

Lines Matching refs:state

46  Description: Changed type definition of state pointer to 'void' for
107 state = pointer containing a pointer to the state structure used for
114 return_value = status of sid_sync_reset function; -1, if state is pointing
127 the pointer to state struct in *st. This pointer has to be passed to sid_sync
161 [State any special notes, constraints or cautions for users of this function]
166 Word16 sid_sync_init(void **state)
170 if (state == NULL)
172 /* fprintf(stderr, "sid_sync_init:invalid state parameter\n"); */
176 *state = NULL;
184 "can not malloc state structure\n"); */
189 *state = (void *)s;
203 state = pointer to the state structure used for SID synchronization (void)
220 This function performs a reset of the sid_sync module by setting the state
254 [State any special notes, constraints or cautions for users of this function]
260 sid_syncState *state = (sid_syncState *) st;
262 state->sid_update_counter = 3;
263 state->sid_handover_debt = 0;
264 state->prev_ft = TX_SPEECH_GOOD;
279 state = pointer containing a pointer to the state structure used for
297 This function frees up the state structure used by sid_sync function. It
298 stores NULL in *state.
331 [State any special notes, constraints or cautions for users of this function]
335 void sid_sync_exit(void **state)
337 sid_syncState **st = (sid_syncState **) state;
361 st = pointer to the state structure used for SID synchronization
415 [State any special notes, constraints or cautions for users of this function]
437 state = pointer to the state structure used for SID synchronization
491 [State any special notes, constraints or cautions for users of this function]
495 void sid_sync(void *state,
500 sid_syncState *st = (sid_syncState *) state;