Lines Matching refs:sbuild_id
177 char sbuild_id[SBUILD_ID_SIZE]; in build_id_cache__add_file() local
186 build_id__sprintf(build_id, sizeof(build_id), sbuild_id); in build_id_cache__add_file()
187 err = build_id_cache__add_s(sbuild_id, filename, in build_id_cache__add_file()
189 pr_debug("Adding %s %s: %s\n", sbuild_id, filename, in build_id_cache__add_file()
197 char sbuild_id[SBUILD_ID_SIZE]; in build_id_cache__remove_file() local
206 build_id__sprintf(build_id, sizeof(build_id), sbuild_id); in build_id_cache__remove_file()
207 err = build_id_cache__remove_s(sbuild_id); in build_id_cache__remove_file()
208 pr_debug("Removing %s %s: %s\n", sbuild_id, filename, in build_id_cache__remove_file()
269 char sbuild_id[SBUILD_ID_SIZE]; in build_id_cache__update_file() local
278 build_id__sprintf(build_id, sizeof(build_id), sbuild_id); in build_id_cache__update_file()
279 if (build_id_cache__cached(sbuild_id)) in build_id_cache__update_file()
280 err = build_id_cache__remove_s(sbuild_id); in build_id_cache__update_file()
283 err = build_id_cache__add_s(sbuild_id, filename, false, false); in build_id_cache__update_file()
285 pr_debug("Updating %s %s: %s\n", sbuild_id, filename, in build_id_cache__update_file()