/external/chromium_org/net/tools/flip_server/ |
http_interface.cc | 86 void HttpSM::AddToOutputOrder(const MemCacheIter& mci) { 87 output_ordering_.AddToOutputOrder(mci); 183 MemCacheIter mci; local 184 mci.stream_id = stream_id; 185 mci.priority = priority; 186 if (!memory_cache_->AssignFileData(filename, &mci)) { 191 AddToOutputOrder(mci); 303 MemCacheIter* mci = output_ordering_.GetIter(); local 304 if (mci == NULL) { 309 if (!mci->transformed_header) [all...] |
output_ordering.cc | 52 const MemCacheIter& mci) 53 : output_ordering_(oo), pmp_(pmp), mci_(mci), epoll_server_(NULL) {} 85 void OutputOrdering::MoveToActive(PriorityMapPointer* pmp, MemCacheIter mci) { 87 first_data_senders_.push_back(mci); 94 void OutputOrdering::AddToOutputOrder(const MemCacheIter& mci) { 95 if (ExistsInPriorityMaps(mci.stream_id)) 100 mci.file_data->headers()->GetHeader("X-Server-Latency").as_string(); 107 << " for resource: " << mci.file_data->filename().c_str(); 114 mci.stream_id, PriorityMapPointer())).first; 117 BeginOutputtingAlarm* boa = new BeginOutputtingAlarm(this, &pmp, mci); 123 MemCacheIter& mci = *pri; local 137 MemCacheIter& mci = first_data_senders_.front(); local 154 MemCacheIter& mci = first_ring.front(); local [all...] |
spdy_interface.cc | 348 MemCacheIter mci; local 349 mci.stream_id = stream_id; 350 mci.priority = priority; 355 if (!memory_cache_->AssignFileData(filename, &mci)) { 360 AddToOutputOrder(mci); 363 AddToOutputOrder(mci); 367 void SpdySM::AddToOutputOrder(const MemCacheIter& mci) { 368 client_output_ordering_.AddToOutputOrder(mci); 550 MemCacheIter* mci = client_output_ordering_.GetIter(); local 551 if (mci == NULL) [all...] |
output_ordering.h | 55 const MemCacheIter& mci); 72 void MoveToActive(PriorityMapPointer* pmp, MemCacheIter mci); 73 void AddToOutputOrder(const MemCacheIter& mci);
|
mem_cache_test.cc | 35 MemCacheIter mci; local 36 mci.stream_id = 0; 39 ASSERT_FALSE(mem_cache_->AssignFileData("./hello", &mci));
|
spdy_interface_test.cc | 356 MemCacheIter mci; local 357 mci.stream_id = stream_id; 363 mci.file_data = memory_cache_->GetFileData(filename); 366 interface_->AddToOutputOrder(mci); 381 MemCacheIter mci; local 382 mci.stream_id = stream_id; 390 mci.file_data = memory_cache_->GetFileData(filename); 393 interface_->AddToOutputOrder(mci); 427 MemCacheIter mci; local 428 mci.stream_id = stream_id 734 MemCacheIter mci; local [all...] |
http_interface_test.cc | 135 MemCacheIter mci; local 136 mci.stream_id = stream_id; 142 mci.file_data = memory_cache_->GetFileData(filename); 145 interface_->AddToOutputOrder(mci); 295 MemCacheIter mci; local 296 mci.stream_id = stream_id; 302 mci.file_data = memory_cache_->GetFileData(filename); 305 interface_->AddToOutputOrder(mci);
|
mem_cache.cc | 220 MemCacheIter* mci) { 221 mci->file_data = GetFileData(filename); 222 if (mci->file_data == NULL) {
|
mem_cache.h | 131 bool AssignFileData(const std::string& filename, MemCacheIter* mci);
|
http_interface.h | 69 void AddToOutputOrder(const MemCacheIter& mci);
|
streamer_interface.h | 31 void AddToOutputOrder(const MemCacheIter& mci) {}
|
spdy_interface.h | 150 void AddToOutputOrder(const MemCacheIter& mci);
|
/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) {}
|
/hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/Platforms/Generic/ |
TrustZoneDevice.h | 80 /** Set up MCI and wait till MC is initialized 108 bool getMciInstance(uint32_t len, CWsm_ptr *mci, bool *reused);
|
TrustZoneDevice.cpp | 40 #include "Mci/mci.h" 59 MC_CHECK_VERSION(MCI, 0, 2); 90 * Set up MCI and wait till MC is initialized 118 // Set up MCI buffer 128 // Only do a fastcall if MCI has not been reused (MC already initialized) 140 // First empty N-SIQ which results in set up of the MCI structure 162 LOG_E("MCI buffer init failed, state is 0x%x", status); 185 LOG_I("MCI established, at %p, phys=%p, reused=%s", 369 bool TrustZoneDevice::getMciInstance(uint32_t len, CWsm_ptr *mci, bool *reused [all...] |
/external/clang/test/SemaCXX/ |
class.cpp | 72 mutable const int mci; // expected-error {{'mutable' and 'const' cannot be mixed}} member in class:C
|
/hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/public/ |
MobiCoreDevice.h | 45 #include "Mci/mcimcp.h" 80 NotificationQueue *nq; /**< Pointer to the notification queue within the MCI buffer */ 81 mcFlags_t *mcFlags; /**< Pointer to the MC flags within the MCI buffer */ 82 mcpMessage_t *mcpMessage; /**< Pointer to the MCP message structure within the MCI buffer */ 195 virtual bool getMciInstance(uint32_t len, CWsm_ptr *mci, bool *reused) = 0;
|