HomeSort by relevance Sort by last modified time
    Searched defs:firstline (Results 1 - 8 of 8) sorted by null

  /external/webrtc/webrtc/modules/audio_coding/neteq/test/
rtp_to_text.cc 91 char firstline[FIRSTLINELEN]; local
92 if (fgets(firstline, FIRSTLINELEN, inFile) == NULL)
99 if (fread(firstline, 4+4+4+2+2, 1, inFile) != 1)
RTPtimeshift.cc 44 char firstline[FIRSTLINELEN]; local
45 EXPECT_TRUE(fgets(firstline, FIRSTLINELEN, inFile) != NULL);
46 EXPECT_GT(fputs(firstline, outFile), 0);
48 fread(firstline, 1, kRtpDumpHeaderSize, inFile));
50 fwrite(firstline, 1, kRtpDumpHeaderSize, outFile));
RTPjitter.cc 68 char firstline[FIRSTLINELEN]; local
139 EXPECT_TRUE(fgets(firstline, FIRSTLINELEN, in_file) != NULL);
140 EXPECT_GT(fputs(firstline, out_file), 0);
141 EXPECT_EQ(kRtpDumpHeaderSize, fread(firstline, 1, kRtpDumpHeaderSize,
143 EXPECT_EQ(kRtpDumpHeaderSize, fwrite(firstline, 1, kRtpDumpHeaderSize,
NETEQTEST_RTPpacket.cc 72 char firstline[kFirstLineLength]; local
73 if (fgets(firstline, kFirstLineLength, fp) == NULL) {
76 if (strncmp(firstline, "#!rtpplay", 9) == 0) {
77 if (strncmp(firstline, "#!rtpplay1.0", 12) != 0) {
81 else if (strncmp(firstline, "#!RTPencode", 11) == 0) {
82 if (strncmp(firstline, "#!RTPencode1.0", 14) != 0) {
  /external/libedit/src/
refresh.c 108 Char *firstline = el->el_vdisplay[0]; local
113 firstline[0] = '\0'; /* empty the string */
114 el->el_vdisplay[i - 1] = firstline;
1079 Char *firstline = el->el_display[0]; local
1084 re__copy_and_pad(firstline, STR(""), (size_t)0);
1085 el->el_display[i - 1] = firstline;
  /external/pcre/dist2/src/
pcre2_dfa_match.c 3127 BOOL utf, anchored, startline, firstline; local
    [all...]
pcre2_match.c 6454 BOOL firstline; local
    [all...]
  /external/webrtc/webrtc/test/
rtp_file_reader.cc 140 char firstline[kFirstLineLength + 1] = {0}; local
141 if (fgets(firstline, kFirstLineLength, file_) == NULL) {
145 if (strncmp(firstline, "#!rtpplay", 9) == 0) {
146 if (strncmp(firstline, "#!rtpplay1.0", 12) != 0) {
150 } else if (strncmp(firstline, "#!RTPencode", 11) == 0) {
151 if (strncmp(firstline, "#!RTPencode1.0", 14) != 0) {

Completed in 120 milliseconds