Lines Matching full:filepath
185 String8 filePath = getFilePath(cameraId);
191 int newStatus = readFile(filePath);
228 String8 filePath = getFilePath(cameraId);
231 open(filePath.string(), O_WRONLY | O_CREAT | O_TRUNC,
235 __FUNCTION__, filePath.string(), strerror(errno), errno);
242 __FUNCTION__, filePath.string(), strerror(errno), errno);
250 int EmulatedCameraHotplugThread::getCameraId(String8 filePath) const {
257 if (camPath == filePath) {
338 int EmulatedCameraHotplugThread::readFile(String8 filePath) const {
341 open(filePath.string(), O_RDONLY, /*mode*/0));
344 __FUNCTION__, filePath.string(), strerror(errno), errno);
357 __FUNCTION__, filePath.string(), length, buffer[0]);