Lines Matching full:obj
44 identifier obj;
47 -holdfn(Object *obj)
48 +holdfn(Object *obj, ResetType type)
51 - parent.hold(obj)
52 + parent.hold(obj, type)
72 identifier obj;
75 -exitfn(Object *obj)
76 +exitfn(Object *obj, ResetType type)
79 - parent.exit(obj)
80 + parent.exit(obj, type)
92 identifier obj;
94 - isl_pmbus_vr_exit_reset(obj);
95 + isl_pmbus_vr_exit_reset(obj, type);
99 expression obj;
104 - rc->phases.phase(obj)@p
105 + rc->phases.phase(obj, RESET_TYPE_COLD)
110 expression obj;
114 - rc->phases.hold(obj)@p
115 + rc->phases.hold(obj, type)
117 expression obj;
121 - rc->phases.exit(obj)@p
122 + rc->phases.exit(obj, type)
125 identifier obj;
127 - typedef void (*ResettableHoldPhase)(Object *obj);
128 + typedef void (*ResettableHoldPhase)(Object *obj, ResetType type);
130 identifier obj;
132 - typedef void (*ResettableExitPhase)(Object *obj);
133 + typedef void (*ResettableExitPhase)(Object *obj, ResetType type);