Searched refs:teePath (Results 1 – 1 of 1) sorted by relevance
/frameworks/av/services/audioflinger/ |
D | AudioFlinger.cpp | 2821 char teePath[32+256]; in dumpTee() local 2822 strcpy(teePath, "/data/misc/media"); in dumpTee() 2823 size_t teePathLen = strlen(teePath); in dumpTee() 2824 DIR *dir = opendir(teePath); in dumpTee() 2825 teePath[teePathLen++] = '/'; in dumpTee() 2858 strcpy(&teePath[teePathLen], entries[i].mName); in dumpTee() 2859 (void) unlink(teePath); in dumpTee() 2864 dprintf(fd, "unable to rotate tees in %s: %s\n", teePath, strerror(errno)); in dumpTee() 2873 snprintf(&teePath[teePathLen], sizeof(teePath) - teePathLen, "%s_%d.wav", teeTime, id); in dumpTee() 2875 int teeFd = open(teePath, O_WRONLY | O_CREAT | O_EXCL | O_NOFOLLOW, S_IRUSR | S_IWUSR); in dumpTee() [all …]
|