Lines Matching refs:filepath
997 filepath TEXT(500) NOT NULL,
1000 UNIQUE (filepath)
1102 $query = 'SELECT DISTINCT filepath
1107 ORDER BY filepath';
1109 $query = 'SELECT DISTINCT filepath
1115 ORDER BY filepath';
1132 $query = 'SELECT filepath from files ORDER BY filepath';
1134 $query = 'SELECT filepath from files WHERE issource=1 ORDER BY filepath';
1163 $query = 'SELECT COUNT(linenumber),filepath FROM coverage_per_file, files
1176 $query = 'SELECT COUNT(linenumber),filepath FROM coverage_per_file, files
1264 $query = 'SELECT id FROM files WHERE filepath=:filepath';
1266 $stmt->bindValue(':filepath', $path);
1278 $query = 'SELECT id FROM tests WHERE testpath=:filepath';
1280 $stmt->bindValue(':filepath', $path);
1351 function addFile($filepath, $issource = 0)
1353 $query = 'SELECT id FROM files WHERE filepath=:filepath';
1355 $stmt->bindParam(':filepath', $filepath);
1357 throw new Exception('Unable to add file ' . $filepath . ' to database');
1360 $query = 'UPDATE files SET filepathmd5=:md5 WHERE filepath=:filepath';
1362 $stmt->bindParam(':filepath', $filepath);
1363 $md5 = md5_file($filepath);
1366 throw new Exception('Unable to update file ' . $filepath . ' md5 in database');
1372 (filepath, filepathmd5, issource)
1375 $stmt->bindValue(':testpath', $filepath);
1376 $md5 = md5_file($filepath);
1380 throw new Exception('Unable to add file ' . $filepath . ' to database');
1519 SELECT id, filepathmd5 FROM files where filepath="' .