HomeSort by relevance Sort by last modified time
    Searched refs:Proc (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/skia/src/core/
SkVertState.h 37 typedef bool (*Proc)(VertState*);
43 Proc chooseProc(SkVertices::VertexMode mode);
  /external/skia/bench/
RegionContainBench.cpp 20 typedef bool (*Proc)(SkRegion& a, SkRegion& b);
22 Proc fProc;
36 RegionContainBench(Proc proc, const char name[]) {
37 fProc = proc;
56 Proc proc = fProc; variable
59 proc(fA, fB);
RegionBench.cpp 71 typedef bool (*Proc)(SkRegion& a, SkRegion& b);
74 Proc fProc;
90 RegionBench(int count, Proc proc, const char name[]) {
91 fProc = proc;
109 Proc proc = fProc; variable
111 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) {
Root.java 42 /** pid -> Proc */
43 final Map<Integer, Proc> processes = new HashMap<Integer, Proc>();
55 Proc process = processes.get(record.pid);
116 Proc proc = processes.get(record.pid); local
118 if (proc == null) {
120 Proc parent = processes.get(record.ppid);
121 proc = new Proc(parent, record.pid)
    [all...]
PrintPsTree.java 40 for (Proc proc : root.processes.values()) {
41 if (proc.parent == null) {
42 proc.print();
Android.mk 14 Proc.java \
Operation.java 36 final Proc process;
57 Operation(Proc process, LoadedClass loadedClass, long startTimeNanos,
WritePreloadedClassFile.java 98 for (Proc proc : root.processes.values()) {
99 if (proc.fromZygote() && !Policy.isService(proc.name)) {
100 for (Operation operation : proc.operations) {
135 for (Proc proc : root.processes.values()) {
136 if (proc.name.equals(processName)) {
137 for (Operation operation : proc.operations) {
  /external/skia/tools/gpu/gl/
GLTestContext.h 65 using Proc = Ret(GR_GL_FUNCTION_TYPE*)(Args...);
67 SkFAIL("getGLProcAddress: proc name must have 'gl' prefix");
72 *out = reinterpret_cast<Proc>(this->onPlatformGetProcAddress(fullname.c_str()));
74 *out = reinterpret_cast<Proc>(this->onPlatformGetProcAddress(name));
  /external/skia/src/codec/
SkSwizzler.h 106 template <RowProc Proc>
112 template <RowProc Proc>
210 SkSwizzler(RowProc fastProc, RowProc proc, const SkPMColor* ctable, int srcOffset,
  /external/skia/include/views/
SkEvent.h 30 * the eventsink matching the target ID (if not 0), or the target proc is
38 typedef bool (*Proc)(const SkEvent& evt);
69 * the eventsink matching the targetID (if not 0), or the target proc is
79 * the eventsink matching the targetID (if not 0), or the target proc is
89 * Return the target proc, or NULL if it has none.
92 * the eventsink matching the targetID (if not 0), or the target proc is
95 Proc getTargetProc() const { return fTargetProc; }
102 * the eventsink matching the targetID (if not 0), or the target proc is
105 SkEvent* setTargetProc(Proc proc) {
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
CpuPowerCalculator.java 65 final ArrayMap<String, ? extends BatteryStats.Uid.Proc> processStats = u.getProcessStats();
68 final BatteryStats.Uid.Proc ps = processStats.valueAt(i);
  /prebuilts/go/darwin-x86/src/crypto/x509/
pem_decrypt_test.go 60 if block.Headers["Proc-Type"] != "4,ENCRYPTED" {
61 t.Errorf("block does not have correct Proc-Type header")
85 Proc-Type: 4,ENCRYPTED
110 Proc-Type: 4,ENCRYPTED
135 Proc-Type: 4,ENCRYPTED
160 Proc-Type: 4,ENCRYPTED
185 Proc-Type: 4,ENCRYPTED
212 Proc-Type: 4,ENCRYPTED
228 Proc-Type: 4,ENCRYPTED
  /prebuilts/go/darwin-x86/src/runtime/
proc_runtime_test.go 5 // Proc unit tests. In runtime package so can use runtime guts.
  /prebuilts/go/linux-x86/src/crypto/x509/
pem_decrypt_test.go 60 if block.Headers["Proc-Type"] != "4,ENCRYPTED" {
61 t.Errorf("block does not have correct Proc-Type header")
85 Proc-Type: 4,ENCRYPTED
110 Proc-Type: 4,ENCRYPTED
135 Proc-Type: 4,ENCRYPTED
160 Proc-Type: 4,ENCRYPTED
185 Proc-Type: 4,ENCRYPTED
212 Proc-Type: 4,ENCRYPTED
228 Proc-Type: 4,ENCRYPTED
  /prebuilts/go/linux-x86/src/runtime/
proc_runtime_test.go 5 // Proc unit tests. In runtime package so can use runtime guts.
  /external/mksh/src/
jobs.c 41 typedef struct proc Proc;
42 struct proc { struct
43 Proc *next; /* next process in pipeline (if any) */
48 char command[256 - (ALLOC_OVERHEAD + sizeof(Proc *) +
79 Proc *proc_list; /* process list */
80 Proc *last_proc; /* last process in list */
146 static Proc *new_proc(void);
216 proc_errorlevel(Proc *p)
433 static Proc *last_proc
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
dll_windows.go 31 func getprocaddress(handle uintptr, procname *uint8) (proc uintptr, err Errno)
82 // FindProc searches DLL d for procedure named name and returns *Proc
84 func (d *DLL) FindProc(name string) (proc *Proc, err error) {
98 p := &Proc{
107 func (d *DLL) MustFindProc(name string) *Proc {
120 // A Proc implements access to a procedure inside a DLL.
121 type Proc struct {
129 func (p *Proc) Addr() uintptr {
142 func (p *Proc) Call(a ...uintptr) (r1, r2 uintptr, lastErr error)
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
dll_windows.go 31 func getprocaddress(handle uintptr, procname *uint8) (proc uintptr, err Errno)
82 // FindProc searches DLL d for procedure named name and returns *Proc
84 func (d *DLL) FindProc(name string) (proc *Proc, err error) {
98 p := &Proc{
107 func (d *DLL) MustFindProc(name string) *Proc {
120 // A Proc implements access to a procedure inside a DLL.
121 type Proc struct {
129 func (p *Proc) Addr() uintptr {
142 func (p *Proc) Call(a ...uintptr) (r1, r2 uintptr, lastErr error)
    [all...]
  /external/llvm/lib/DebugInfo/CodeView/
SymbolDumper.cpp 547 void CVSymbolDumperImpl::visitProcSym(SymbolKind Kind, ProcSym &Proc) {
557 W.printHex("PtrParent", Proc.Header.PtrParent);
558 W.printHex("PtrEnd", Proc.Header.PtrEnd);
559 W.printHex("PtrNext", Proc.Header.PtrNext);
560 W.printHex("CodeSize", Proc.Header.CodeSize);
561 W.printHex("DbgStart", Proc.Header.DbgStart);
562 W.printHex("DbgEnd", Proc.Header.DbgEnd);
563 CVTD.printTypeIndex("FunctionType", Proc.Header.FunctionType);
565 ObjDelegate->printRelocatedField("CodeOffset", Proc.getRelocationOffset(),
566 Proc.Header.CodeOffset, &LinkageName)
    [all...]
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
trace_time_unittest.py 76 def Proc():
79 with self.ReplacePlatformProcessorCall(Proc):
  /external/skia/gm/
srcmode.cpp 31 typedef void (*Proc)(SkCanvas*, const SkPaint&);
82 const Proc procs[] = {
  /external/skia/include/effects/
SkMorphologyImageFilter.h 28 typedef void (*Proc)(const SkPMColor* src, SkPMColor* dst, int radius,
  /device/linaro/bootloader/edk2/BaseTools/Tests/
TestTools.py 126 Proc = subprocess.Popen(
132 Proc.stdout.read()
134 return Proc.wait()

Completed in 1000 milliseconds

1 2 3