Lines Matching refs:check_inherited

2115 static struct dso *find_library_by_name(const char *name, const ns_t *ns, bool check_inherited)
2117 LD_LOGD("find_library_by_name name:%{public}s, ns_name:%{public}s, check_inherited:%{public}d",
2120 !!check_inherited);
2123 if (check_inherited && ns->ns_inherits) {
2138 UT_STATIC struct dso *find_library_by_fstat(const struct stat *st, const ns_t *ns, bool check_inherited, uint64_t file_offset) {
2139 LD_LOGD("find_library_by_fstat ns_name:%{public}s, check_inherited :%{public}d",
2141 !!check_inherited);
2144 if (check_inherited && ns->ns_inherits) {
2157 const char *name, struct dso *needed_by, ns_t *namespace, bool check_inherited, struct reserved_address_params *reserved_params)
2214 if (!is_accessible(namespace, pathname, g_is_asan, check_inherited)) {
2224 p = find_library_by_name(name, namespace, check_inherited);
2259 if (!check_inherited || !namespace->ns_inherits) return 0;
2279 p = find_library_by_fstat(&st, namespace, check_inherited, 0);
5524 bool check_inherited = task->check_inherited;
5586 if (!is_accessible(namespace, task->pathname, g_is_asan, check_inherited)) {
5600 if (!is_accessible(namespace, task->pathname, g_is_asan, check_inherited)) {
5611 task->p = find_library_by_name(name, namespace, check_inherited);
5633 if (!is_accessible(namespace, task->buf, g_is_asan, check_inherited)) {
5654 if (!check_inherited || !namespace->ns_inherits) {
5666 task->check_inherited = false;
5683 task->p = find_library_by_fstat(&st, namespace, check_inherited, task->file_offset);
5794 task->check_inherited = true;