HomeSort by relevance Sort by last modified time
    Searched refs:mci (Results 1 - 14 of 14) 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) {}
  /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;
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 597 void JIT::runJITOnFunction(Function *F, MachineCodeInfo *MCI) {
601 MachineCodeInfo *const MCI;
603 MCIListener(MachineCodeInfo *mci) : MCI(mci) {}
607 MCI->setAddress(Code);
608 MCI->setSize(Size);
611 MCIListener MCIL(MCI);
612 if (MCI)
617 if (MCI)
    [all...]

Completed in 352 milliseconds