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

  /system/core/debuggerd/tombstoned/
intercept_manager.h 32 struct Intercept {
33 ~Intercept() {
49 std::unordered_map<pid_t, std::unique_ptr<Intercept>> intercepts;
intercept_manager.cpp 37 auto intercept = reinterpret_cast<Intercept*>(arg); local
38 InterceptManager* intercept_manager = intercept->intercept_manager;
40 CHECK_EQ(sockfd, intercept->sockfd.get());
43 // closed their end of the socket. Either way, kill the intercept.
45 // Ownership of intercept differs based on whether we've registered it with InterceptManager.
46 if (!intercept->registered) {
47 delete intercept;
49 auto it = intercept_manager->intercepts.find(intercept->intercept_pid);
51 LOG(FATAL) << "intercept close callback called after intercept was already removed?"
83 auto intercept = reinterpret_cast<Intercept*>(arg); local
175 Intercept* intercept = new Intercept(); local
208 auto intercept = std::move(it->second); local
    [all...]
  /external/skia/src/core/
SkGlyphCache.h 215 static void OffsetResults(const SkGlyph::Intercept* intercept, SkScalar scale,
217 static void AddInterval(SkScalar val, SkGlyph::Intercept* intercept);
219 bool yAxis, SkGlyph::Intercept* intercept);
221 SkGlyph::Intercept* intercept);
223 SkGlyph::Intercept* intercept);
    [all...]
SkGlyph.h 134 struct Intercept {
135 Intercept* fNext;
141 Intercept* fIntercept;
SkGlyphCache.cpp 236 void SkGlyphCache::OffsetResults(const SkGlyph::Intercept* intercept, SkScalar scale,
241 *array++ = intercept->fInterval[index] * scale + xPos;
247 void SkGlyphCache::AddInterval(SkScalar val, SkGlyph::Intercept* intercept) {
248 intercept->fInterval[0] = SkTMin(intercept->fInterval[0], val);
249 intercept->fInterval[1] = SkTMax(intercept->fInterval[1], val);
253 bool yAxis, SkGlyph::Intercept* intercept)
303 const SkGlyph::Intercept* intercept = glyph->fPathData->fIntercept; local
324 SkGlyph::Intercept* intercept = fAlloc.make<SkGlyph::Intercept>(); local
    [all...]
  /external/guice/core/test/com/google/inject/internal/
ProxyFactoryTest.java 30 import org.aopalliance.intercept.MethodInterceptor;
31 import org.aopalliance.intercept.MethodInvocation;
82 aspects.add(new MethodAspect(only(Bar.class), annotatedWith(Intercept.class), interceptor));
107 @Intercept
122 @Intercept
129 @interface Intercept {}
  /external/v8/src/
execution.cc 305 // Intercept already requested interrupts.
338 thread_local_.postpone_interrupts_->Intercept(flag)) {
isolate.h     [all...]
isolate.cc     [all...]
  /external/swiftshader/third_party/LLVM/
Android.mk 158 lib/ExecutionEngine/JIT/Intercept.cpp \

Completed in 585 milliseconds