Lines Matching defs:obj
1561 static int32_t SdhciHostParse(struct SdhciHost *host, struct HdfDeviceObject *obj)
1568 if (obj == NULL || host == NULL) {
1573 node = obj->property;
2014 static int32_t SdhciMmcBind(struct HdfDeviceObject *obj)
2020 if (obj == NULL) {
2039 cntlr->hdfDevObj = obj;
2040 obj->service = &cntlr->service;
2042 ret = MmcCntlrParse(cntlr, obj);
2046 ret = SdhciHostParse(host, obj);
2068 static int32_t SdhciMmcInit(struct HdfDeviceObject *obj)
2072 (void)obj;
2083 static void SdhciMmcRelease(struct HdfDeviceObject *obj)
2088 if (obj == NULL) {
2092 cntlr = (struct MmcCntlr *)obj->service;