Searched refs:temp_list (Results 1 – 3 of 3) sorted by relevance
750 struct dirent **temp_list = NULL; in scandir() local767 temp_list, new_list_size * sizeof(struct dirent*)); in scandir()771 temp_list = new_list; in scandir()774 temp_list[num_dent] = (struct dirent*)malloc((dent->d_reclen + 3) & ~3); in scandir()775 if (!temp_list[num_dent]) in scandir()777 memcpy(temp_list[num_dent], dent, dent->d_reclen); in scandir()783 qsort(temp_list, num_dent, sizeof(struct dirent*), in scandir()786 *name_list = temp_list; in scandir()792 free(temp_list[--num_dent]); in scandir()793 free(temp_list); in scandir()
868 WriteBlockedList temp_list; in OnCanWrite() local869 temp_list.swap(write_blocked_list_); in OnCanWrite()875 while (!temp_list.empty()) { in OnCanWrite()876 QuicBlockedWriterInterface* blocked_writer = temp_list.begin()->first; in OnCanWrite()877 temp_list.erase(temp_list.begin()); in OnCanWrite()
1858 std::list<std::shared_ptr<Node>> temp_list; in CollectNodesLocked() local1863 temp_list.push_back(input); in CollectNodesLocked()1867 while (!temp_list.empty()) { in CollectNodesLocked()1868 auto cur_node = temp_list.front(); in CollectNodesLocked()1869 temp_list.pop_front(); in CollectNodesLocked()1874 temp_list.push_back(input); in CollectNodesLocked()