Clover Coverage Report - AnCal Coverage Report
Coverage timestamp: gio dic 18 2014 12:18:42 EST
../../../../../img/srcFileCovDistChart0.png 94% of files have more coverage
33   92   13   4,12
4   82   0,39   2,67
8     1,62  
3    
This report was generated with an evaluation server license. Purchase Clover or configure your license.
 
  IAlarmService       Line # 6 0 0 - -1.0
  IAlarmService.Stub       Line # 9 19 9 0% 0.0
  IAlarmService.Stub.Proxy       Line # 56 14 4 0% 0.0
 
No Tests
 
1    /*
2    * This file is auto-generated. DO NOT MODIFY.
3    * Original file: /home/michele/workspaces/android/optimizationEnergyConsumption/AnCal/src/pl/magot/vetch/ancal/reminder/IAlarmService.aidl
4    */
5    package pl.magot.vetch.ancal.reminder;
 
6    public interface IAlarmService extends android.os.IInterface
7    {
8    /** Local-side IPC implementation stub class. */
 
9    public static abstract class Stub extends android.os.Binder implements pl.magot.vetch.ancal.reminder.IAlarmService
10    {
11    private static final java.lang.String DESCRIPTOR = "pl.magot.vetch.ancal.reminder.IAlarmService";
12    /** Construct the stub at attach it to the interface. */
 
13  0 togglepublic Stub()
14    {
15  0 this.attachInterface(this, DESCRIPTOR);
16    }
17    /**
18    * Cast an IBinder object into an pl.magot.vetch.ancal.reminder.IAlarmService interface,
19    * generating a proxy if needed.
20    */
 
21  0 togglepublic static pl.magot.vetch.ancal.reminder.IAlarmService asInterface(android.os.IBinder obj)
22    {
23  0 if ((obj==null)) {
24  0 return null;
25    }
26  0 android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR);
27  0 if (((iin!=null)&&(iin instanceof pl.magot.vetch.ancal.reminder.IAlarmService))) {
28  0 return ((pl.magot.vetch.ancal.reminder.IAlarmService)iin);
29    }
30  0 return new pl.magot.vetch.ancal.reminder.IAlarmService.Stub.Proxy(obj);
31    }
 
32  0 toggle@Override public android.os.IBinder asBinder()
33    {
34  0 return this;
35    }
 
36  0 toggle@Override public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException
37    {
38  0 switch (code)
39    {
40  0 case INTERFACE_TRANSACTION:
41    {
42  0 reply.writeString(DESCRIPTOR);
43  0 return true;
44    }
45  0 case TRANSACTION_getPid:
46    {
47  0 data.enforceInterface(DESCRIPTOR);
48  0 int _result = this.getPid();
49  0 reply.writeNoException();
50  0 reply.writeInt(_result);
51  0 return true;
52    }
53    }
54  0 return super.onTransact(code, data, reply, flags);
55    }
 
56    private static class Proxy implements pl.magot.vetch.ancal.reminder.IAlarmService
57    {
58    private android.os.IBinder mRemote;
 
59  0 toggleProxy(android.os.IBinder remote)
60    {
61  0 mRemote = remote;
62    }
 
63  0 toggle@Override public android.os.IBinder asBinder()
64    {
65  0 return mRemote;
66    }
 
67  0 togglepublic java.lang.String getInterfaceDescriptor()
68    {
69  0 return DESCRIPTOR;
70    }
 
71  0 toggle@Override public int getPid() throws android.os.RemoteException
72    {
73  0 android.os.Parcel _data = android.os.Parcel.obtain();
74  0 android.os.Parcel _reply = android.os.Parcel.obtain();
75  0 int _result;
76  0 try {
77  0 _data.writeInterfaceToken(DESCRIPTOR);
78  0 mRemote.transact(Stub.TRANSACTION_getPid, _data, _reply, 0);
79  0 _reply.readException();
80  0 _result = _reply.readInt();
81    }
82    finally {
83  0 _reply.recycle();
84  0 _data.recycle();
85    }
86  0 return _result;
87    }
88    }
89    static final int TRANSACTION_getPid = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
90    }
91    public int getPid() throws android.os.RemoteException;
92    }