HomeSort by relevance Sort by last modified time
    Searched refs:mModule (Results 1 - 21 of 21) sorted by null

  /hardware/libhardware/tests/camera2/
CameraModuleFixture.h 58 (const hw_module_t **)&mModule)) << "Could not load camera module";
59 ASSERT_NE((void*)0, mModule);
61 mNumberOfCameras = mModule->get_number_of_cameras();
65 CAMERA_MODULE_API_VERSION_2_0, mModule->common.module_api_version)
82 ASSERT_EQ(0, HWModuleHelpers::closeModule(&mModule->common))
89 ASSERT_EQ(OK, mModule->get_camera_info(cameraID, &info));
117 res = mModule->get_camera_info(cameraId, &info);
137 ASSERT_EQ(OK, mDevice->initialize(mModule))
148 camera_module_t *mModule;
CameraModuleTests.cpp 51 stat = mDevice->initialize(mModule);
97 mModule->common.methods->open(
98 &mModule->common,
114 ASSERT_EQ(OK, mModule->get_camera_info(i, &info));
126 EXPECT_NE(OK, mModule->get_camera_info(idx[i], &info));
127 EXPECT_EQ(-ENODEV, mModule->get_camera_info(idx[i], &info))
  /frameworks/compile/libbcc/include/bcc/
Source.h 33 llvm::Module *mModule;
35 // If true, destructor won't destroy the mModule.
70 { return *mModule; }
72 { return *mModule; }
  /frameworks/compile/slang/
slang_rs_metadata_spec_encoder.cpp 61 llvm::Module *mModule;
117 : mModule(M),
256 mModule->getOrInsertNamedMetadata(RecordInfoMetadataName);
269 if (!EncodeInteger(mModule->getContext(),
279 if (!EncodeInteger(mModule->getContext(),
285 RecordInfoMetadata->addOperand(llvm::MDNode::get(mModule->getContext(),
320 if (!EncodeInteger(mModule->getContext(), VarName, VarInfo)) {
323 if (!EncodeInteger(mModule->getContext(), Type, VarInfo)) {
328 mVarInfoMetadata = mModule->getOrInsertNamedMetadata(RS_EXPORT_VAR_MN);
330 mVarInfoMetadata->addOperand(llvm::MDNode::get(mModule->getContext()
    [all...]
  /frameworks/compile/libbcc/lib/Core/
Source.cpp 57 if (!mNoDelete && (mModule != pModule)) delete mModule;
58 mModule = pModule;
126 : mContext(pContext), mModule(&pModule), mNoDelete(pNoDelete) {
133 delete mModule;
142 if (llvm::Linker::LinkModules(mModule, &pSource.getModule(),
178 return mModule->getModuleIdentifier();
  /frameworks/compile/mclinker/tools/mcld/lib/Core/
Linker.cpp 65 : mLDConfig(NULL), mModule(NULL), mLinker(NULL), mBuilder(NULL),
70 : mLDConfig(NULL), mModule(NULL), mLinker(NULL), mBuilder(NULL),
85 delete mModule;
105 mModule = new mcld::Module(mLDConfig->options().soname(),
108 mBuilder = new mcld::IRBuilder(*mModule, *mLDConfig);
164 mLinker->link(*mModule, *mBuilder);
  /packages/apps/Camera/src/com/android/camera/
PhotoController.java 39 private PhotoModule mModule;
48 mModule = module;
116 mModule.showPopup(mPopup);
139 mModule.dismissPopup(true);
171 if (topPopupOnly) mModule.showPopup(mPopup);
213 mModule.dismissPopup(true);
220 mModule.dismissPopup(true);
223 mModule.showPopup(mSecondPopup);
VideoController.java 39 private VideoModule mModule;
50 mModule = module;
94 mModule.showPopup(mPopup);
128 mModule.dismissPopup(true);
154 if (topPopupOnly) mModule.showPopup(mPopup);
172 mModule.dismissPopup(true);
179 mModule.dismissPopup(true);
182 mModule.showPopup(mPopup);
PreviewGestures.java 48 private CameraModule mModule;
77 mModule = module;
201 mModule.onSingleTapUp(null,
  /frameworks/compile/libbcc/bcinfo/
MetadataExtractor.cpp 65 : mModule(NULL), mBitcode(bitcode), mBitcodeSize(bitcodeSize),
79 : mModule(module), mBitcode(NULL), mBitcodeSize(0), mExportVarCount(0),
407 if (!(mBitcode && mBitcodeSize) && !mModule) {
414 if (!mModule) {
422 mModule = llvm::ParseBitcodeFile(MEM.get(), *mContext, &error);
423 if (!mModule) {
431 mModule->getNamedMetadata(ExportVarMetadataName);
433 mModule->getNamedMetadata(ExportFuncMetadataName);
435 mModule->getNamedMetadata(ExportForEachNameMetadataName);
437 mModule->getNamedMetadata(ExportForEachMetadataName)
    [all...]
  /external/chromium_org/third_party/codesighs/
msmap.h 119 char* mModule;
codesighs.c 166 ** mModule Module name.
170 char* mModule;
482 if(0 == strcmp(modules[index].mModule, module))
503 modules[index].mModule = strdup(module);
504 if(NULL == modules[index].mModule)
581 fprintf(inOptions->mOutput, "%s\n", modules[loop].mModule);
586 CLEANUP(modules[loop].mModule);
    [all...]
msmap2tsv.c     [all...]
maptsvdifftool.c 195 char* mModule;
226 retval = strcmp(one->mModule, two->mModule);
452 if(0 == strcmp(modules[moduleIndex].mModule, module))
469 modules[moduleIndex].mModule = strdup(module);
470 if(NULL == modules[moduleIndex].mModule)
    [all...]
  /frameworks/av/services/camera/libcameraservice/
CameraService.cpp 93 :mSoundRef(0), mModule(0)
112 (const hw_module_t **)&mModule) < 0) {
117 ALOGI("Loaded \"%s\" camera module", mModule->common.name);
118 mNumberOfCameras = mModule->get_number_of_cameras();
128 if (mModule->common.module_api_version >=
130 mModule->set_callbacks(this);
214 if (!mModule) {
223 status_t rc = mModule->get_camera_info(cameraId, &info);
236 if (!mModule) {
241 if (mModule->common.module_api_version < CAMERA_MODULE_API_VERSION_2_0)
    [all...]
CameraService.h 363 camera_module_t *mModule;
  /frameworks/compile/mclinker/tools/mcld/include/alone/
Linker.h 58 mcld::Module *mModule;
  /frameworks/compile/libbcc/include/bcinfo/
MetadataExtractor.h 38 const llvm::Module *mModule;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
BuildFileCreator.java 86 private final GradleModule mModule;
278 mModule = module;
356 for (GradleModule dep : mModule.getDependencies()) {
381 IFolderWrapper projectFolder = new IFolderWrapper(mModule.getProject());
387 for (IClasspathEntry entry : mModule.getJavaProject().readRawClasspath()) {
444 for (IClasspathEntry entry : mModule.getJavaProject().readRawClasspath()) {
  /hardware/libhardware_legacy/audio/
AudioPolicyManagerBase.cpp 632 output = mpClientInterface->openOutput(profile->mModule->mHandle,
    [all...]
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioPolicyManagerBase.h 228 HwModule *mModule; // audio HW module exposing this I/O stream

Completed in 407 milliseconds