/external/srec/seti/setiUtils/include/ |
platform_utils.h | 30 Returns the position in NULL terminated input_str where seps are found, 32 Seps contains a NULL terminated string of separators 37 char * safe_strtok(char *input_str, char *seps, int * token_len);
|
/external/srec/seti/setiUtils/src/ |
platform_utils.c | 36 Returns the position in NULL terminated input_str where seps are found, 38 Seps contains a NULL terminated string of separators 44 char * safe_strtok(char *input_str, char *seps, int * token_len) 50 m = strlen(seps); 60 if (*pos == seps[j]) { 78 if (pos[k-i] == seps[j]) {
|
/external/bluetooth/bluez/tools/ |
avinfo.c | 254 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/bluetooth/bluez/audio/ |
avdtp.c | 192 struct seid_info seps[0]; member in struct:discover_resp 331 GSList *seps; member in struct:avdtp_server 400 GSList *seps; /* Elements of type struct avdtp_remote_sep * */ member in struct:avdtp 732 static struct avdtp_remote_sep *find_remote_sep(GSList *seps, uint8_t seid) 736 for (l = seps; l != NULL; l = g_slist_next(l)) { 776 rsep = find_remote_sep(stream->session->seps, stream->rseid); 1043 session->discov_cb(session, session->seps, 1156 g_slist_foreach(session->seps, (GFunc) g_free, NULL); 1157 g_slist_free(session->seps); 1178 for (l = server->seps; l != NULL; l = g_slist_next(l)) 1264 struct seid_info *seps; local [all...] |
avdtp.h | 212 typedef void (*avdtp_discover_cb_t) (struct avdtp *session, GSList *seps,
|
source.c | 449 static void discovery_complete(struct avdtp *session, GSList *seps, struct avdtp_error *err, 481 error("No matching ACP and INT SEPs found");
|
unix.c | 603 static void a2dp_discovery_complete(struct avdtp *session, GSList *seps, 631 for (l = seps; l; l = g_slist_next(l)) { [all...] |
sink.c | 488 static void discovery_complete(struct avdtp *session, GSList *seps, struct avdtp_error *err, 520 error("No matching ACP and INT SEPs found");
|
/external/svox/pico/tts/ |
com_svox_picottsengine.cpp | 590 * notes : the token separator set could be enlarged adding characters in "seps" 594 const char * seps = " "; local 597 while ((pos<textlen) && (strchr(seps,str[pos]) != NULL)) { 601 /*no characters != seps found whithin string*/ 606 while ((pos<textlen) && (strchr(seps,str[pos]) == NULL)) { 622 * notes : the sub token separator set could be enlarged adding characters in "seps" 626 const char * seps = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; local 635 while ((pos < textlen) && (strchr(seps, str[pos]) != NULL)) { 639 /*characters all in seps found whithin string : return full token*/ 643 /*pos should be pointing to first non seps and more chars are there* [all...] |
/external/srec/seti/sltsEngine/src/ |
run_seq_lts.c | 661 char seps[] = " \n"; local 676 tok = safe_strtok(line, seps, &toklen); 687 tok = safe_strtok(tok+toklen, seps, &toklen); 1348 char seps[] = " "; local [all...] |