HomeSort by relevance Sort by last modified time
    Searched refs:mci (Results 1 - 11 of 11) sorted by null

  /external/chromium/net/tools/flip_server/
output_ordering.cc 46 const MemCacheIter& mci)
49 mci_(mci),
82 void OutputOrdering::MoveToActive(PriorityMapPointer* pmp, MemCacheIter mci) {
84 first_data_senders_.push_back(mci);
91 void OutputOrdering::AddToOutputOrder(const MemCacheIter& mci) {
92 if (ExistsInPriorityMaps(mci.stream_id))
97 mci.file_data->headers->GetHeader("X-Server-Latency").as_string();
104 << mci.file_data->filename.c_str();
111 std::pair<uint32, PriorityMapPointer>(mci.stream_id,
115 BeginOutputtingAlarm* boa = new BeginOutputtingAlarm(this, &pmp, mci);
122 MemCacheIter& mci = *pri; local
138 MemCacheIter& mci = first_data_senders_.front(); local
155 MemCacheIter& mci = first_ring.front(); local
    [all...]
http_interface.cc 93 void HttpSM::AddToOutputOrder(const MemCacheIter& mci) {
94 output_ordering_.AddToOutputOrder(mci);
202 MemCacheIter mci; local
203 mci.stream_id = stream_id;
204 mci.priority = priority;
205 if (!memory_cache_->AssignFileData(filename, &mci)) {
210 AddToOutputOrder(mci);
327 MemCacheIter* mci = output_ordering_.GetIter(); local
328 if (mci == NULL) {
333 if (!mci->transformed_header)
    [all...]
spdy_interface.cc 362 MemCacheIter mci; local
363 mci.stream_id = stream_id;
364 mci.priority = priority;
366 if (!memory_cache_->AssignFileData(filename, &mci)) {
371 AddToOutputOrder(mci);
374 AddToOutputOrder(mci);
378 void SpdySM::AddToOutputOrder(const MemCacheIter& mci) {
379 client_output_ordering_.AddToOutputOrder(mci);
551 MemCacheIter* mci = client_output_ordering_.GetIter(); local
552 if (mci == NULL)
    [all...]
output_ordering.h 53 const MemCacheIter& mci);
70 void MoveToActive(PriorityMapPointer* pmp, MemCacheIter mci);
71 void AddToOutputOrder(const MemCacheIter& mci);
mem_cache.cc 223 MemCacheIter* mci) {
224 mci->file_data = GetFileData(filename);
225 if (mci->file_data == NULL) {
mem_cache.h 125 bool AssignFileData(const std::string& filename, MemCacheIter* mci);
http_interface.h 69 void AddToOutputOrder(const MemCacheIter& mci);
spdy_interface.h 93 void AddToOutputOrder(const MemCacheIter& mci);
streamer_interface.h 31 void AddToOutputOrder(const MemCacheIter& mci) {}
  /external/clang/test/SemaCXX/
class.cpp 70 mutable const int mci; // expected-error {{error: 'mutable' and 'const' cannot be mixed}} member in class:C
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 591 void JIT::runJITOnFunction(Function *F, MachineCodeInfo *MCI) {
595 MachineCodeInfo *const MCI;
597 MCIListener(MachineCodeInfo *mci) : MCI(mci) {}
601 MCI->setAddress(Code);
602 MCI->setSize(Size);
605 MCIListener MCIL(MCI);
606 if (MCI)
611 if (MCI)
    [all...]

Completed in 347 milliseconds