Searched refs:seps (Results 1 - 7 of 7) sorted by relevance

/external/srec/seti/setiUtils/include/
H A Dplatform_utils.h30 Returns the position in NULL terminated input_str where seps are found,
37 char * safe_strtok(char *input_str, char *seps, int * token_len);
/external/srec/seti/setiUtils/src/
H A Dplatform_utils.c36 Returns the position in NULL terminated input_str where seps are found,
44 char * safe_strtok(char *input_str, char *seps, int * token_len) argument
50 m = strlen(seps);
60 if (*pos == seps[j]) {
78 if (pos[k-i] == seps[j]) {
/external/bluetooth/bluedroid/bta/av/
H A Dbta_av_aact.c243 if ((p_scb->seps[xx].tsep == local_sep) &&
244 (p_scb->seps[xx].codec_type == p_scb->codec_type))
245 return (p_scb->seps[xx].av_handle);
265 if (p_scb->seps[xx].av_handle == tavdt_handle)
266 return (p_scb->seps[xx].tsep);
580 if((p_scb->avdt_handle == handle)&&(p_scb->seps[p_scb->sep_idx].tsep == AVDT_TSEP_SNK))
589 p_scb->seps[p_scb->sep_idx].p_app_data_cback(BTA_AV_MEDIA_DATA_EVT, (tBTA_AV_MEDIA*)p_pkt);
743 p_scb->seps[xx].av_handle, p_scb->seps[xx].codec_type);
744 if((p_scb->seps[x
[all...]
H A Dbta_av_main.c663 if(AVDT_CreateStream(&p_scb->seps[index].av_handle, &cs) == AVDT_SUCCESS)
665 p_scb->seps[index].codec_type = codec_type;
668 p_scb->seps[index].tsep = cs.tsep;
670 p_scb->seps[index].p_app_data_cback = p_data->api_reg.p_app_data_cback;
672 p_scb->seps[index].p_app_data_cback = NULL; /* In case of A2DP SOURCE we don't need a callback to handle media packets */
676 index, p_scb->seps[index].av_handle, p_scb->seps[index].codec_type);
H A Dbta_av_int.h471 tBTA_AV_SEP seps[BTA_AV_MAX_SEPS]; member in struct:__anon458
491 UINT8 num_seps; /* number of seps returned by stream discovery */
495 UINT8 sep_idx; /* current index into local seps[] */
/external/svox/pico/tts/
H A Dcom_svox_picottsengine.cpp602 * notes : the token separator set could be enlarged adding characters in "seps"
606 const char * seps = " "; local
609 while ((pos<textlen) && (strchr(seps,str[pos]) != NULL)) {
613 /*no characters != seps found whithin string*/
618 while ((pos<textlen) && (strchr(seps,str[pos]) == NULL)) {
634 * notes : the sub token separator set could be enlarged adding characters in "seps"
638 const char * seps = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; local
647 while ((pos < textlen) && (strchr(seps, str[pos]) != NULL)) {
651 /*characters all in seps found whithin string : return full token*/
655 /*pos should be pointing to first non seps an
[all...]
/external/srec/seti/sltsEngine/src/
H A Drun_seq_lts.c661 char seps[] = " \n"; local
676 tok = safe_strtok(line, seps, &toklen);
687 tok = safe_strtok(tok+toklen, seps, &toklen);
1348 char seps[] = " "; local
1352 tok = safe_strtok(output, seps, &toklen);
1366 tok = safe_strtok(tok+toklen, seps, &toklen);

Completed in 2349 milliseconds