Searched defs:seps (Results 1 - 8 of 8) sorted by relevance

/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/bluez/audio/
H A Dsource.c315 static void discovery_complete(struct avdtp *session, GSList *seps, struct avdtp_error *err, argument
H A Dsink.c358 static void discovery_complete(struct avdtp *session, GSList *seps, struct avdtp_error *err, argument
H A Dunix.c624 static void a2dp_discovery_complete(struct avdtp *session, GSList *seps, argument
651 for (; seps; seps = g_slist_next(seps)) {
652 struct avdtp_remote_sep *rsep = seps->data;
H A Davdtp.c190 struct seid_info seps[0]; member in struct:discover_resp
329 GSList *seps; member in struct:avdtp_server
402 GSList *seps; /* Elements of type struct avdtp_remote_sep * */ member in struct:avdtp
740 static struct avdtp_remote_sep *find_remote_sep(GSList *seps, uint8_t seid) argument
744 for (l = seps; l != NULL; l = g_slist_next(l)) {
784 rsep = find_remote_sep(stream->session->seps, stream->rseid);
1117 session->discov_cb(session, session->seps,
1232 g_slist_foreach(session->seps, (GFunc) g_free, NULL);
1233 g_slist_free(session->seps);
1254 for (l = server->seps;
1354 struct seid_info *seps; local
[all...]
/external/bluetooth/bluez/tools/
H A Davinfo.c254 struct seid_info seps[0]; member in struct:discover_resp
519 int seps, i; local
534 seps = (ret - sizeof(struct avdtp_header)) / sizeof(struct seid_info);
535 for (i = 0; i < seps; i++) {
538 switch (discover->seps[i].type) {
549 switch (discover->seps[i].media_type) {
564 discover->seps[i].seid, media, type,
565 discover->seps[i].inuse ? "*" : "");
567 avdtp_get_caps(sk, discover->seps[i].seid);
/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);
/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...]

Completed in 158 milliseconds