Home
last modified time | relevance | path

Searched refs:c_str (Results 1 – 25 of 1033) sorted by relevance

12345678910>>...42

/frameworks/proto_logging/stats/stats_log_api_gen/
Djava_writer_q.cpp25 fprintf(out, "%s// Payload limits.\n", indent.c_str()); in write_java_q_logging_constants()
26 fprintf(out, "%sprivate static final int LOGGER_ENTRY_MAX_PAYLOAD = 4068;\n", indent.c_str()); in write_java_q_logging_constants()
30 indent.c_str()); in write_java_q_logging_constants()
34 fprintf(out, "%s// Value types.\n", indent.c_str()); in write_java_q_logging_constants()
35 fprintf(out, "%sprivate static final byte INT_TYPE = 0;\n", indent.c_str()); in write_java_q_logging_constants()
36 fprintf(out, "%sprivate static final byte LONG_TYPE = 1;\n", indent.c_str()); in write_java_q_logging_constants()
37 fprintf(out, "%sprivate static final byte STRING_TYPE = 2;\n", indent.c_str()); in write_java_q_logging_constants()
38 fprintf(out, "%sprivate static final byte LIST_TYPE = 3;\n", indent.c_str()); in write_java_q_logging_constants()
39 fprintf(out, "%sprivate static final byte FLOAT_TYPE = 4;\n", indent.c_str()); in write_java_q_logging_constants()
45 fprintf(out, "%s// Size of each value type.\n", indent.c_str()); in write_java_q_logging_constants()
[all …]
Djava_writer.cpp49 fprintf(out, " public static final byte %s = %hhu;\n", name.c_str(), id); in write_java_annotation_constants()
53 fprintf(out, " public static final byte %s =\n", name.c_str()); in write_java_annotation_constants()
55 fprintf(out, " %hhu : StatsLog.%s;\n", id, name.c_str()); in write_java_annotation_constants()
61 name.c_str(), name.c_str()); in write_java_annotation_constants()
78 fprintf(out, " if (%s == code) {\n", atomConstant.c_str()); in write_annotations()
92 annotationConstant.c_str(), annotation->value.intValue); in write_annotations()
97 annotationConstant.c_str(), in write_annotations()
109 annotationConstant.c_str(), defaultState); in write_annotations()
124 chainField.name.c_str()); in write_method_signature()
142 indent.c_str()); in write_method_body()
[all …]
Drust_writer.cpp112 fprintf(out, " %s::%s(", atomDecl.name.c_str(), namePrefix); in write_rust_method_signature()
132 fprintf(out, "%s_chain_: &[%s],%s", chainField.name.c_str(), in write_rust_method_signature()
142 fprintf(out, "%s_non_chained_", atomField.name.c_str()); in write_rust_method_signature()
144 fprintf(out, "%s", get_variable_name(atomField.name).c_str()); in write_rust_method_signature()
147 fprintf(out, ": %s,%s", make_camel_case_name(atomField.name).c_str(), in write_rust_method_signature()
174 write_rust_method_signature(out, method_name.c_str(), *atom, attributionDecl, in write_rust_usage()
191 fprintf(out, " // %s %s\n", atomDecl->message.c_str(), atomDecl->name.c_str()); in write_rust_atom_constants()
202 fprintf(out, " %s = %d,\n", constant.c_str(), atomDecl->code); in write_rust_atom_constants()
216 fprintf(out, " pub enum %s {\n", make_camel_case_name(field.name).c_str()); in write_rust_atom_constant_values()
220 make_camel_case_name(value->second).c_str(), value->first); in write_rust_atom_constant_values()
[all …]
Dutils.cpp140 fprintf(out, "namespace %s {\n", cppNamespace.c_str()); in write_namespace()
148 fprintf(out, "} // namespace %s\n", it->c_str()); in write_closing_namespace()
154 fprintf(out, " * Usage: %s(StatsLog.%s", method_name.c_str(), atom_code_name.c_str()); in write_cpp_usage()
162 chainField.name.c_str()); in write_cpp_usage()
165 cpp_type_name(chainField.javaType), chainField.name.c_str(), in write_cpp_usage()
166 chainField.name.c_str()); in write_cpp_usage()
175 field->name.c_str(), field->name.c_str(), field->name.c_str(), in write_cpp_usage()
176 field->name.c_str()); in write_cpp_usage()
178 fprintf(out, ", %s %s", cpp_type_name(field->javaType), field->name.c_str()); in write_cpp_usage()
200 fprintf(out, " * %s %s\n", (*atomIt)->message.c_str(), (*atomIt)->name.c_str()); in write_native_atom_constants()
[all …]
Dnative_writer.cpp29 fprintf(out, "const uint8_t %s = %hhu;\n", name.c_str(), id); in write_native_annotation_constants()
48 fprintf(out, " if (%s == code) {\n", atomConstant.c_str()); in write_annotations()
62 methodPrefix.c_str(), methodSuffix.c_str(), in write_annotations()
63 constantPrefix.c_str(), annotationConstant.c_str(), in write_annotations()
68 fprintf(out, " %saddBoolAnnotation(%s%s%s, %s);\n", methodPrefix.c_str(), in write_annotations()
69 methodSuffix.c_str(), constantPrefix.c_str(), in write_annotations()
70 annotationConstant.c_str(), in write_annotations()
81 fprintf(out, " %saddInt32Annotation(%s%s%s, %d);\n", methodPrefix.c_str(), in write_annotations()
82 methodSuffix.c_str(), constantPrefix.c_str(), annotationConstant.c_str(), in write_annotations()
101 const char* uidName = attributionDecl.fields.front().name.c_str(); in write_native_method_body()
[all …]
/frameworks/base/services/incremental/test/
Dpath_test.cpp26 EXPECT_STREQ("", normalize("").c_str()); in TEST()
29 .c_str()); in TEST()
30 EXPECT_STREQ("/a/b", normalize("/a/c/../b").c_str()); in TEST()
44 EXPECT_STREQ("", path::join("", "").c_str()); in TEST()
46 EXPECT_STREQ("/", path::join("", "/").c_str()); in TEST()
47 EXPECT_STREQ("/", path::join("/", "").c_str()); in TEST()
48 EXPECT_STREQ("/", path::join("/", "/").c_str()); in TEST()
49 EXPECT_STREQ("/", path::join("/"s, "/").c_str()); in TEST()
50 EXPECT_STREQ("/", path::join("/"sv, "/").c_str()); in TEST()
51 EXPECT_STREQ("/", path::join("/", "/", "/", "/", "/", "/", "/", "/", "/", "/").c_str()); in TEST()
[all …]
/frameworks/base/startop/view_compiler/
Djava_lang_builder.cc25 out_ << StringPrintf("package %s;\n", package_.c_str()) in Start()
55 package_.c_str(), in Start()
56 layout_name_.c_str()) in Start()
80 class_name.c_str(), in StartView()
81 view_var.c_str(), in StartView()
82 parent.c_str(), in StartView()
83 class_name.c_str()) in StartView()
85 view_var.c_str(), in StartView()
86 view_var.c_str(), in StartView()
87 class_name.c_str()); in StartView()
[all …]
/frameworks/av/media/libmediaformatshaper/
DCodecProperties.cpp36 ALOGV("CodecProperties(%s, %s)", name.c_str(), mediaType.c_str()); in CodecProperties()
70 ALOGD("setFeatureValue(%s,%d)", key.c_str(), value); in setFeatureValue()
73 if (!strcmp(key.c_str(), FEATURE_QpBounds)) { in setFeatureValue()
75 } else if (!strcmp(key.c_str(), "video-minimum-quality")) { in setFeatureValue()
77 } else if (!strcmp(key.c_str(), "vq-minimum-quality")) { // from prototyping in setFeatureValue()
83 ALOGV("getFeatureValue(%s)", key.c_str()); in getFeatureValue()
101 ALOGD("setTuningValue(%s,%s)", key.c_str(), value.c_str()); in setTuningValue()
106 if (!strcmp(key.c_str(), "vq-target-qpmax")) { in setTuningValue()
107 const char *p = value.c_str(); in setTuningValue()
114 } else if (!strncmp(key.c_str(), "vq-target-qpmax-", strlen("vq-target-qpmax-"))) { in setTuningValue()
[all …]
/frameworks/base/libs/androidfw/
DLocale.cpp86 set_language(lang.c_str()); in InitFromFilterString()
99 set_region(part2.c_str()); in InitFromFilterString()
101 set_script(part2.c_str()); in InitFromFilterString()
103 set_variant(part2.c_str()); in InitFromFilterString()
117 set_region(part3.c_str()); in InitFromFilterString()
119 set_variant(part3.c_str()); in InitFromFilterString()
130 set_variant(part4.c_str()); in InitFromFilterString()
149 set_language(subtags[0].c_str()); in InitFromBcp47TagImpl()
151 set_language(subtags[0].c_str()); in InitFromBcp47TagImpl()
157 set_region(subtags[1].c_str()); in InitFromBcp47TagImpl()
[all …]
/frameworks/av/media/libstagefright/httplive/
DM3UParser.cpp219 const char *lang = item.mLanguage.empty() ? "und" : item.mLanguage.c_str(); in getTrackInfo()
331 *uri = mItems.itemAt(index).makeURL(mBaseURI.c_str()); in itemAt()
437 *uri = mItems.itemAt(index).makeURL(mBaseURI.c_str()); in getTypeURI()
468 if (!group->getActiveURI(uri, mBaseURI.c_str())) { in getTypeURI()
473 *uri = mItems.itemAt(index).makeURL(mBaseURI.c_str()); in getTypeURI()
503 ALOGV("base:'%s', url:'%s' => '%s'", baseURL, url, out->c_str()); in MakeURL()
552 ALOGV("base:'%s', url:'%s' => '%s'", baseURL, url, out->c_str()); in MakeURL()
559 CHECK(MakeURL(baseURL, mURI.c_str(), &out)); in makeURL()
565 CHECK(MakeURL(baseURL, mURI.c_str(), &out)); in makeURL()
744 groupID.c_str()); in parse()
[all …]
/frameworks/base/core/jni/
Dandroid_os_SELinux.cpp100 const char* path_c_str = path.c_str(); in fileSelabelLookup()
201 context_c_str = context->c_str(); in setFSCreateCon()
229 if (path.c_str() == NULL) { in setFileCon()
234 if (context.c_str() == NULL) { in setFileCon()
239 char *tmp = const_cast<char *>(context.c_str()); in setFileCon()
240 int ret = setfilecon(path.c_str(), tmp); in setFileCon()
242 ALOGV("setFileCon(%s, %s) => %d", path.c_str(), context.c_str(), ret); in setFileCon()
262 if (path.c_str() == NULL) { in getFileCon()
267 int ret = getfilecon(path.c_str(), &tmp); in getFileCon()
275 ALOGV("getFileCon(%s) => %s", path.c_str(), context.get()); in getFileCon()
[all …]
/frameworks/native/services/vr/performanced/
Dtask.cpp27 open(stream.str().c_str(), O_RDONLY | O_DIRECTORY)); in OpenTaskDirectory()
31 const char* start = value.c_str(); in ParseUidStatusField()
60 task_id_, name_.c_str(), thread_group_id_, parent_process_id_, in Task()
68 openat(task_fd_.get(), relative_path.c_str(), O_RDONLY)); in OpenTaskFile()
73 base::unique_fd fd(openat(task_fd_.get(), relative_path.c_str(), O_RDONLY)); in OpenTaskFilePointer()
76 name.c_str(), strerror(errno)); in OpenTaskFilePointer()
83 task_id_, name.c_str(), strerror(errno)); in OpenTaskFilePointer()
98 field.c_str(), line.c_str(), offset); in GetStatusField()
121 line.c_str()); in ReadStatusFields()
129 key.c_str(), value.c_str()); in ReadStatusFields()
[all …]
Dcpu_set.cpp39 base::unique_fd root_cpuset_fd(open(path.c_str(), kDirectoryFlags)); in Create()
41 ALOGE("CpuSet::Create: Failed to open \"%s\": %s", path.c_str(), in Create()
54 ALOGE("CpuSet::Create: Failed to opendir %s cpuset: %s", name.c_str(), in Create()
71 openat(base_fd.get(), directory_name.c_str(), kDirectoryFlags)); in Create()
74 Create(std::move(entry_fd), directory_name.c_str(), group.get()); in Create()
160 target_set.c_str()); in MoveUnboundTasks()
175 task_id, task.name().c_str(), target_set.c_str(), in MoveUnboundTasks()
182 task_id, target_set.c_str(), status.GetErrorMessage().c_str()); in MoveUnboundTasks()
186 task_id, task.name().c_str(), task.cpus_allowed_list().c_str()); in MoveUnboundTasks()
201 ALOGI("CpuSet::CpuSet: path=%s", path().c_str()); in CpuSet()
[all …]
/frameworks/av/media/libstagefright/
DOmxInfoBuilder.cpp56 return strncasecmp(s.c_str(), prefix, strlen(prefix)) == 0; in hasPrefix()
71 attribute.key.c_str(), in queryCapabilities()
76 attribute.key.c_str(), attribute.value.c_str()); in queryCapabilities()
81 node.owner.c_str(), node.name.c_str(), mediaType, isEncoder, caps); in queryCapabilities()
133 p.key.c_str(), p.value.c_str()); in buildMediaCodecList()
160 nodeName.c_str(), role.type.c_str()); in buildMediaCodecList()
173 if (sscanf(attribute.value.c_str(), "%u%c", &rank, &dummy) != 1) { in buildMediaCodecList()
187 info->setName(nodeName.c_str()); in buildMediaCodecList()
188 info->setOwner(node.owner.c_str()); in buildMediaCodecList()
214 info->addMediaType(typeName.c_str()); in buildMediaCodecList()
[all …]
DMediaCodecListOverrides.cpp68 *width = strtol(sWidth.c_str(), NULL, 10); in getMeasureSize()
69 *height = strtol(sHeight.c_str(), NULL, 10); in getMeasureSize()
87 *bitrate = strtol(minBitrate.c_str(), NULL, 10); in getMeasureBitrate()
135 name.c_str(), mime.c_str(), isEncoder ? "encoder" : "decoder", in doProfileCodecs()
136 format->debugString().c_str()); in doProfileCodecs()
148 sp<MediaCodec> codec = MediaCodec::CreateByComponentName(looper, name.c_str(), &err); in doProfileCodecs()
150 ALOGV("Failed to create codec: %s", name.c_str()); in doProfileCodecs()
159 ALOGV("Failed to configure codec: %s with mime: %s", name.c_str(), mime.c_str()); in doProfileCodecs()
166 ALOGV("Failed to start codec: %s with mime: %s", name.c_str(), mime.c_str()); in doProfileCodecs()
174 ALOGV("doProfileCodecs release %s", name.c_str()); in doProfileCodecs()
[all …]
/frameworks/native/cmds/installd/
Dutils.cpp79 DIR* dir = opendir(root_path.c_str()); in resolve_ce_path_by_inode_or_fallback()
88 auto resolved = StringPrintf("%s/%s", root_path.c_str(), ent->d_name); in resolve_ce_path_by_inode_or_fallback()
114 create_data_user_ce_path(volume_uuid, user).c_str(), package_name); in create_data_user_ce_package_path()
128 return StringPrintf("%s/user/%u/%s", data.c_str(), userid, package_name); in create_data_user_ce_package_path_as_user_link()
144 create_data_user_de_path(volume_uuid, user).c_str(), package_name); in create_data_user_de_package_path()
163 return StringPrintf("%s/app", create_data_path(volume_uuid).c_str()); in create_data_app_path()
173 std::string legacy = StringPrintf("%s/data", data.c_str()); in create_data_user_ce_path()
175 if (lstat(legacy.c_str(), &sb) == 0 && S_ISDIR(sb.st_mode)) { in create_data_user_ce_path()
180 return StringPrintf("%s/user/%u", data.c_str(), userid); in create_data_user_ce_path()
188 return StringPrintf("%s/user_de/%u", data.c_str(), userid); in create_data_user_de_path()
[all …]
DInstalldNativeService.cpp129 return binder::Status::fromExceptionCode(code, String8(msg.c_str())); in exception()
138 return binder::Status::fromServiceSpecificError(errno, String8(msg.c_str())); in error()
143 return binder::Status::fromServiceSpecificError(code, String8(msg.c_str())); in error()
174 StringPrintf("UUID %s is malformed", uuid->c_str())); in checkArgumentUuid()
179 if (!uuid || strcmp(uuid->c_str(), kTestUuid) == 0) { in checkArgumentUuidTestOrNull()
183 StringPrintf("UUID must be null or \"%s\", got: %s", kTestUuid, uuid->c_str())); in checkArgumentUuidTestOrNull()
192 StringPrintf("Package name %s is malformed", packageName.c_str())); in checkArgumentPackageName()
202 StringPrintf("Path %s is relative", path.c_str())); in checkArgumentPath()
206 StringPrintf("Path %s is shady", path.c_str())); in checkArgumentPath()
211 StringPrintf("Path %s is malformed", path.c_str())); in checkArgumentPath()
[all …]
/frameworks/native/cmds/dumpstate/
DDumpstateService.cpp45 MYLOGE("%s (%d) ", msg.c_str(), code); in exception()
47 MYLOGE("%s %s (%d) ", msg.c_str(), extra_msg.c_str(), code); in exception()
49 return binder::Status::fromExceptionCode(code, String8(msg.c_str())); in exception()
171 calling_uid, calling_package.c_str()), in cancelBugreport()
173 StringPrintf("started by %d/%s", calling_uid_, calling_package_.c_str())); in cancelBugreport()
187 : ds_->bugreport_internal_dir_.c_str(); in dump()
194 dprintf(fd, "args: %s\n", ds_->options_->args.c_str()); in dump()
195 dprintf(fd, "bugreport_mode: %s\n", ds_->options_->bugreport_mode.c_str()); in dump()
196 dprintf(fd, "version: %s\n", ds_->version_.c_str()); in dump()
197 dprintf(fd, "bugreport_dir: %s\n", destination.c_str()); in dump()
[all …]
/frameworks/base/media/mca/filterfw/native/core/
Dnative_program.cpp47 lib_handle_ = dlopen(lib_name.c_str(), RTLD_NOW); in OpenLibrary()
49 ALOGE("NativeProgram: Error opening library: '%s': %s", lib_name.c_str(), dlerror()); in OpenLibrary()
60 process_function_ = reinterpret_cast<ProcessFunctionPtr>(dlsym(lib_handle_, func_name.c_str())); in BindProcessFunction()
62 ALOGE("NativeProgram: Could not find process function symbol: '%s'!", func_name.c_str()); in BindProcessFunction()
71 init_function_ = reinterpret_cast<InitFunctionPtr>(dlsym(lib_handle_, func_name.c_str())); in BindInitFunction()
78 setvalue_function_ = reinterpret_cast<SetValueFunctionPtr>(dlsym(lib_handle_, func_name.c_str())); in BindSetValueFunction()
85 getvalue_function_ = reinterpret_cast<GetValueFunctionPtr>(dlsym(lib_handle_, func_name.c_str())); in BindGetValueFunction()
92 reset_function_ = reinterpret_cast<ResetFunctionPtr>(dlsym(lib_handle_, func_name.c_str())); in BindResetFunction()
99 teardown_function_ = reinterpret_cast<TeardownFunctionPtr>(dlsym(lib_handle_, func_name.c_str())); in BindTeardownFunction()
128 setvalue_function_(key.c_str(), value.c_str(), user_data_); in CallSetValue()
[all …]
/frameworks/native/libs/graphicsenv/
DGraphicsEnv.cpp116 ALOGE("Failed to retrieve library names from %s", nativeLibrariesSystemConfig.c_str()); in getSystemNativeLibraries()
137 mDriverPath.c_str(), path.c_str(), mSphalLibraries.c_str(), sphalLibraries.c_str()); in setDriverPathAndSphalLibraries()
140 ALOGV("setting driver path to '%s' and sphal libraries to '%s'", path.c_str(), in setDriverPathAndSphalLibraries()
141 sphalLibraries.c_str()); in setDriverPathAndSphalLibraries()
185 driverPackageName.c_str(), driverVersionName.c_str(), driverVersionCode, driverBuildTime, in setGpuStats()
186 appPackageName.c_str(), vulkanVersion); in setGpuStats()
294 mGpuStats.driverPackageName.c_str(), mGpuStats.driverVersionName.c_str(), in sendGpuStatsLocked()
295 mGpuStats.driverVersionCode, mGpuStats.driverBuildTime, mGpuStats.appPackageName.c_str(), in sendGpuStatsLocked()
334 void* so = android_dlopen_ext(libName.c_str(), RTLD_LOCAL | RTLD_NOW, &dlextinfo); in loadLibrary()
337 ALOGD("dlopen_ext from APK (%s) success at %p", libName.c_str(), so); in loadLibrary()
[all …]
/frameworks/av/services/mediametrics/fuzzer/
Dmediametrics_service_fuzzer.cpp69 random_key->setInt32(fdp.ConsumeRandomLengthString().c_str(), in invokeInstantiate()
76 audiotrack_key->addInt32(fdp.ConsumeRandomLengthString().c_str(), in invokeInstantiate()
85 MediaMetricsService::useUidForPackage(fdp.ConsumeRandomLengthString().c_str(), in invokePackageInstallerCheck()
86 fdp.ConsumeRandomLengthString().c_str()); in invokePackageInstallerCheck()
93 mediametrics::Item item(fdp.ConsumeRandomLengthString().c_str()); in invokeItemManipulation()
102 item.setInt32(key.c_str(), fdp.ConsumeIntegral<int32_t>()); in invokeItemManipulation()
106 item.addInt32(key.c_str(), fdp.ConsumeIntegral<int32_t>()); in invokeItemManipulation()
111 item.getInt32(key.c_str(), &i32); in invokeItemManipulation()
115 item.setInt64(key.c_str(), fdp.ConsumeIntegral<int64_t>()); in invokeItemManipulation()
119 item.addInt64(key.c_str(), fdp.ConsumeIntegral<int64_t>()); in invokeItemManipulation()
[all …]
/frameworks/av/media/libaudiohal/
DFactoryHalHidl.cpp48 handle = dlopen(libName.c_str(), dlMode); in createHalService()
51 ALOGE("Failed to dlopen %s: %s", libName.c_str(), in createHalService()
56 *(void **)(&factoryFunction) = dlsym(handle, factoryFunctionName.c_str()); in createHalService()
60 factoryFunctionName.c_str(), libName.c_str(), in createHalService()
67 factoryFunctionName.c_str(), libName.c_str()); in createHalService()
88 fqName.c_str(), instance.c_str(), transport.description().c_str()); in hasHalService()
/frameworks/av/media/codec2/sfplugin/
DCodec2InfoBuilder.cpp355 ALOGV("property_get for ro.vendor.build.fingerprint == '%s'", fingerprint.c_str()); in buildMediaCodecList()
359 ALOGV("property_get for ro.vendor.build.version.sdk == '%s'", sdk.c_str()); in buildMediaCodecList()
383 sdk.c_str(), brand.c_str(), product.c_str(), device.c_str()); in buildMediaCodecList()
409 writer->addGlobalSetting(v.first.c_str(), v.second.c_str()); in buildMediaCodecList()
427 Codec2Client::CreateInterfaceByName(nameOrAlias.c_str()); in buildMediaCodecList()
431 nameOrAlias.c_str()); in buildMediaCodecList()
437 writer->findMediaCodecInfo(trait.name.c_str()); in buildMediaCodecList()
440 nameOrAlias.c_str(), in buildMediaCodecList()
441 trait.name.c_str()); in buildMediaCodecList()
444 nameOrAlias.c_str()); in buildMediaCodecList()
[all …]
/frameworks/native/opengl/libs/EGL/
Degl_layers.cpp354 ALOGI("Debug layer list: %s", debug_layers.c_str()); in LoadLayers()
361 android::base::Split(android::GraphicsEnv::getInstance().getLayerPaths().c_str(), in LoadLayers()
374 ALOGI("Searching %s for GLES layers", paths[j].c_str()); in LoadLayers()
381 ALOGI("GLES layer found: %s", layer.c_str()); in LoadLayers()
395 dlhandle_ = OpenNativeLibraryInNamespace(app_namespace, layer.c_str(), in LoadLayers()
398 ALOGE("Failed to load layer %s with error: %s", layer.c_str(), in LoadLayers()
405 dlhandle_ = dlopen(layer.c_str(), RTLD_NOW | RTLD_LOCAL); in LoadLayers()
410 layers[i].c_str()); in LoadLayers()
414 ALOGE("Failed to load layer %s with error: %s", layer.c_str(), dlsym_error); in LoadLayers()
420 ALOGV("Looking for entrypoint %s", init_func.c_str()); in LoadLayers()
[all …]
/frameworks/native/vulkan/libvulkan/
Dlayers_extensions.cpp128 ALOGV("opening layer library '%s'", path_.c_str()); in Open()
139 app_namespace, path_.c_str(), &native_bridge_, &error_msg); in Open()
141 ALOGE("failed to load layer library '%s': %s", path_.c_str(), error_msg); in Open()
147 dlhandle_ = dlopen(path_.c_str(), RTLD_NOW | RTLD_LOCAL); in Open()
149 ALOGE("failed to load layer library '%s': %s", path_.c_str(), in Open()
162 ALOGV("closing layer library '%s'", path_.c_str()); in Close()
165 ALOGE("failed to unload library '%s': %s", path_.c_str(), error_msg); in Close()
184 path_.c_str()); in EnumerateLayers()
205 path_.c_str(), result); in EnumerateLayers()
215 path_.c_str(), result); in EnumerateLayers()
[all …]

12345678910>>...42