Lines Matching refs:tempInt
142 int tempInt; in init() local
156 if (sscanf(l, "card=%d", &tempInt) == 1) { in init()
157 ALOGD("card=%d", tempInt); in init()
158 mCard = tempInt; in init()
165 } else if (sscanf(l, "device=%d", &tempInt) == 1) { in init()
166 ALOGD("device=%d", tempInt); in init()
167 mDevice = tempInt; in init()
168 } else if (sscanf(l, "period_size=%d", &tempInt) == 1) { in init()
169 ALOGD("period_size=%d", tempInt); in init()
170 mPeriodSize = tempInt; in init()
171 } else if (sscanf(l, "period_count=%d", &tempInt) == 1) { in init()
172 ALOGD("period_count=%d", tempInt); in init()
173 mPeriodCount = tempInt; in init()