HomeSort by relevance Sort by last modified time
    Searched defs:Proc (Results 1 - 23 of 23) sorted by null

  /cts/tests/tests/security/src/android/security/cts/
Proc.java 25 * Utilities for accessing /proc filesystem information.
27 public class Proc {
29 File f = new File("/proc");
  /external/chromium_org/third_party/skia/include/core/
SkBlitRow.h 35 typedef void (*Proc)(uint16_t* dst,
39 static Proc Factory(unsigned flags, SkBitmap::Config);
94 static Proc PlatformProcs565(unsigned flags);
  /external/chromium_org/third_party/skia/include/effects/
SkColorMatrixFilter.h 44 typedef void (*Proc)(const State&, unsigned r, unsigned g, unsigned b,
47 Proc fProc;
  /external/chromium_org/third_party/skia/src/core/
SkDrawProcs.h 38 typedef void (*Proc)(const SkDraw1Glyph&, SkFixed x, SkFixed y, const SkGlyph&);
40 Proc init(const SkDraw* draw, SkBlitter* blitter, SkGlyphCache* cache,
59 SkDraw1Glyph::Proc fD1GProc;
SkDraw.cpp 249 BitmapXferProc proc, uint32_t procData) {
274 proc(pixels, widthBytes, procData);
300 BitmapXferProc proc = ChooseBitmapXferProc(*fBitmap, paint, &procData); local
301 if (proc) {
302 if (D_Dst_BitmapXferProc == proc) { // nothing to do
308 CallBitmapXferProc(*fBitmap, iter.rect(), proc, procData);
331 typedef void (*Proc)(const PtProcRec&, const SkPoint devPts[], int count,
336 Proc chooseProc(SkBlitter** blitter);
475 // If this guy returns true, then chooseProc() must return a valid proc
510 PtProcRec::Proc PtProcRec::chooseProc(SkBlitter** blitterPtr)
511 Proc proc = NULL; local
623 PtProcRec::Proc proc = rec.chooseProc(&bltr); local
1727 SkDraw1Glyph::Proc proc = d1g.init(this, blitter, cache, paint); local
1930 SkDraw1Glyph::Proc proc = d1g.init(this, blitter, cache, paint); local
2044 SkMatrix::MapXYProc proc = matrix.getMapXYProc(); local
    [all...]
  /external/skia/include/core/
SkBlitRow.h 35 typedef void (*Proc)(uint16_t* dst,
39 static Proc Factory(unsigned flags, SkBitmap::Config);
94 static Proc PlatformProcs565(unsigned flags);
  /external/skia/include/effects/
SkColorMatrixFilter.h 44 typedef void (*Proc)(const State&, unsigned r, unsigned g, unsigned b,
47 Proc fProc;
  /external/skia/src/core/
SkDrawProcs.h 38 typedef void (*Proc)(const SkDraw1Glyph&, SkFixed x, SkFixed y, const SkGlyph&);
40 Proc init(const SkDraw* draw, SkBlitter* blitter, SkGlyphCache* cache,
59 SkDraw1Glyph::Proc fD1GProc;
SkDraw.cpp 249 BitmapXferProc proc, uint32_t procData) {
274 proc(pixels, widthBytes, procData);
300 BitmapXferProc proc = ChooseBitmapXferProc(*fBitmap, paint, &procData); local
301 if (proc) {
302 if (D_Dst_BitmapXferProc == proc) { // nothing to do
308 CallBitmapXferProc(*fBitmap, iter.rect(), proc, procData);
331 typedef void (*Proc)(const PtProcRec&, const SkPoint devPts[], int count,
336 Proc chooseProc(SkBlitter** blitter);
475 // If this guy returns true, then chooseProc() must return a valid proc
510 PtProcRec::Proc PtProcRec::chooseProc(SkBlitter** blitterPtr)
511 Proc proc = NULL; local
623 PtProcRec::Proc proc = rec.chooseProc(&bltr); local
1727 SkDraw1Glyph::Proc proc = d1g.init(this, blitter, cache, paint); local
1930 SkDraw1Glyph::Proc proc = d1g.init(this, blitter, cache, paint); local
2044 SkMatrix::MapXYProc proc = matrix.getMapXYProc(); local
    [all...]
  /external/skia/bench/
PathUtilsBench.cpp 38 typedef void (*Proc)(char*, SkPath*);
40 Proc fProc;
47 PathUtilsBench(void* param, Proc proc, const char name[]) : INHERITED(param) {
48 fProc = proc;
RegionContainBench.cpp 20 typedef bool (*Proc)(SkRegion& a, SkRegion& b);
22 Proc fProc;
37 RegionContainBench(void* param, Proc proc, const char name[]) : INHERITED(param) {
38 fProc = proc;
55 Proc proc = fProc; local
58 proc(fA, fB);
RegionBench.cpp 72 typedef bool (*Proc)(SkRegion& a, SkRegion& b);
75 Proc fProc;
93 RegionBench(void* param, int count, Proc proc, const char name[], int mul = 1) : INHERITED(param) {
94 fProc = proc;
110 Proc proc = fProc; local
113 proc(fA, fB);
  /frameworks/base/tools/preload/
Proc.java 27 class Proc implements Serializable {
32 final Proc parent;
44 final List<Proc> children = new ArrayList<Proc>();
60 Proc(Proc parent, int id) {
155 * Prints a child proc to standard out.
159 for (Proc child : children) {
  /external/chromium_org/third_party/skia/include/views/
SkEvent.h 26 * the eventsink matching the target ID (if not 0), or the target proc is
34 typedef bool (*Proc)(const SkEvent& evt);
65 * the eventsink matching the targetID (if not 0), or the target proc is
75 * the eventsink matching the targetID (if not 0), or the target proc is
85 * Return the target proc, or NULL if it has none.
88 * the eventsink matching the targetID (if not 0), or the target proc is
91 Proc getTargetProc() const { return fTargetProc; }
98 * the eventsink matching the targetID (if not 0), or the target proc is
101 SkEvent* setTargetProc(Proc proc) {
    [all...]
  /external/skia/gm/
srcmode.cpp 35 typedef void (*Proc)(SkCanvas*, const SkPaint&);
85 const Proc procs[] = {
blurrect.cpp 16 typedef void (*Proc)(SkCanvas*, const SkRect&, const SkPaint&);
104 static const Proc procs[] = {
117 bool doClip, const Proc procs[], size_t procsCount) {
  /external/skia/include/views/
SkEvent.h 26 * the eventsink matching the target ID (if not 0), or the target proc is
34 typedef bool (*Proc)(const SkEvent& evt);
65 * the eventsink matching the targetID (if not 0), or the target proc is
75 * the eventsink matching the targetID (if not 0), or the target proc is
85 * Return the target proc, or NULL if it has none.
88 * the eventsink matching the targetID (if not 0), or the target proc is
91 Proc getTargetProc() const { return fTargetProc; }
98 * the eventsink matching the targetID (if not 0), or the target proc is
101 SkEvent* setTargetProc(Proc proc) {
    [all...]
  /external/llvm/utils/TableGen/
DFAPacketizerEmitter.cpp 368 Record *Proc = ProcItinList[i];
369 std::vector<Record*> FUs = Proc->getValueAsListOfDefs("FU");
419 Record *Proc = ProcItinList[i];
422 const std::string &Name = Proc->getName();
435 std::vector<Record*> ItinDataList = Proc->getValueAsListOfDefs("IID");
  /external/skia/tests/
BlitRowTest.cpp 27 typedef int (*Proc)(const void*, int width, uint32_t expected, uint32_t* bad);
67 static Proc find_proc(const SkBitmap& bm, SkPMColor expect32, uint16_t expect16,
90 Proc proc = find_proc(bm, expect32, expect16, expect8, &expect); local
93 int x = proc(bm.getAddr(0, y), bm.width(), expect, &bad);
  /external/mksh/src/
jobs.c 40 typedef struct proc Proc;
41 struct proc { struct
42 Proc *next; /* next process in pipeline (if any) */
47 char command[64 - (ALLOC_SIZE + sizeof(Proc *) + sizeof(pid_t) +
79 Proc *proc_list; /* process list */
80 Proc *last_proc; /* last process in list */
149 static Proc *new_proc(void);
219 proc_errorlevel(Proc *p)
388 static Proc *last_proc
    [all...]
  /frameworks/base/core/java/android/os/
BatteryStats.java 251 * @return a Map from Strings to Uid.Proc objects.
253 public abstract Map<String, ? extends Proc> getProcessStats();
331 public static abstract class Proc {
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java 330 * Used as a buffer for reading in data from /proc/wakelocks before it is processed and added
780 * The most recent reported count from /proc/wakelocks.
785 * The reported count from /proc/wakelocks when unplug() was last
791 * The most recent reported total_time from /proc/wakelocks.
797 * The reported total_time from /proc/wakelocks when unplug() was last
1791 Uid.Proc proc = uid.getProcessStatsLocked("*wakelock*"); local
1803 Uid.Proc proc = uid.getProcessStatsLocked("*lost*"); local
3128 Uid.Proc proc = procEntry.getValue(); local
3231 Uid.Proc proc = new Proc(); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 

Completed in 1770 milliseconds