Home | History | Annotate | Download | only in cpu_ref

Lines Matching defs:info

163         ALOGW("bcc: FAILS to synchronize the RS info file to the disk");
174 const bcc::RSInfo *info = &mExecutable->getInfo();
175 if (info->getExportVarNames().size()) {
176 mBoundAllocs = new Allocation *[info->getExportVarNames().size()];
177 memset(mBoundAllocs, 0, sizeof(void *) * info->getExportVarNames().size());
234 const char *rsInfo = (const char *) dlsym(mScriptSO, ".rs.info");
236 //ALOGE("Found .rs.info(): %p - %s", rsInfo, rsInfo);
431 const bcc::RSInfo *info = &mExecutable->getInfo();
433 // Copy info over to runtime
434 script->mHal.info.exportedFunctionCount = info->getExportFuncNames().size();
435 script->mHal.info.exportedVariableCount = info->getExportVarNames().size();
436 script->mHal.info.exportedPragmaCount = info->getPragmas().size();
437 script->mHal.info.exportedPragmaKeyList =
439 script->mHal.info.exportedPragmaValueList =
443 script->mHal.info.root = mRootExpand;
445 script->mHal.info.root = mRoot;
448 // Copy info over to runtime
449 script->mHal.info.exportedFunctionCount = mExportedFunctionCount;
450 script->mHal.info.exportedVariableCount = mExportedVariableCount;
451 script->mHal.info.exportedPragmaCount = 0;
452 script->mHal.info.exportedPragmaKeyList = 0;
453 script->mHal.info.exportedPragmaValueList = 0;
457 script->mHal.info.root = mRootExpand;
459 script->mHal.info.root = mRoot;
833 for (uint32_t ct=0; ct < mScript->mHal.info.exportedVariableCount; ct++) {