HomeSort by relevance Sort by last modified time
    Searched full:allocated_length (Results 1 - 1 of 1) sorted by null

  /bionic/tests/
stdio_test.cpp 61 size_t allocated_length = 0; local
66 ASSERT_EQ(getdelim(&word_read, &allocated_length, ' ', fp), static_cast<int>(strlen(expected[i])));
67 ASSERT_GE(allocated_length, strlen(expected[i]));
77 ASSERT_EQ(getdelim(&word_read, &allocated_length, ' ', fp), -1);
123 size_t allocated_length = 0; local
127 while ((read_char_count = getline(&line_read, &allocated_length, fp)) != -1) {
129 ASSERT_GE(allocated_length, strlen(line_written));
142 ASSERT_EQ(getline(&line_read, &allocated_length, fp), -1);

Completed in 374 milliseconds