/hardware/intel/common/wrs_omxil_core/utils/src/ |
thread.cpp | 51 ret = pthread_create(&id, NULL, Instance, this); 74 void *Thread::Instance(void *p)
|
/external/libbrillo/brillo/dbus/ |
dbus_object.h | 98 // 3. That takes a class instance pointer and a class member function 141 template<typename Instance, typename Class, typename R, typename... Args> 143 Instance instance, 146 this, method_name, base::Bind(handler, instance)); 150 template<typename Instance, typename Class, typename R, typename... Args> 152 Instance instance, 155 this, method_name, base::Bind(handler, instance)); 179 template<typename Instance, typename Class, typename... Args [all...] |
/cts/suite/audio_quality/lib/include/ |
Settings.h | 25 static Settings* Instance();
|
/cts/suite/audio_quality/lib/src/ |
Settings.cpp | 22 Settings* Settings::Instance()
|
Report.cpp | 26 Report* Report::Instance(const char* dirName) 62 Settings::Instance()->addSetting(Settings::EREPORT_FILE, report); 110 Settings::Instance()->getSetting(Settings::EREPORT_TIME).string()); 113 printf(" %s", Settings::Instance()->getSetting(Settings::EDEVICE_INFO).string()); 116 Settings::Instance()->getSetting(Settings::ETEST_XML).string());
|
/libcore/ojluni/src/main/java/java/security/cert/ |
CertPathBuilder.java | 38 import sun.security.jca.GetInstance.Instance; 99 * access a single {@code CertPathBuilder} instance concurrently should 101 * threads each manipulating a different {@code CertPathBuilder} instance 171 Instance instance = GetInstance.getInstance("CertPathBuilder", local 173 return new CertPathBuilder((CertPathBuilderSpi)instance.impl, 174 instance.provider, algorithm); 214 Instance instance = GetInstance.getInstance("CertPathBuilder", local 216 return new CertPathBuilder((CertPathBuilderSpi)instance.impl 251 Instance instance = GetInstance.getInstance("CertPathBuilder", local [all...] |
CertPathValidator.java | 38 import sun.security.jca.GetInstance.Instance; 101 * access a single {@code CertPathValidator} instance concurrently should 104 * instance need not synchronize. 172 Instance instance = GetInstance.getInstance("CertPathValidator", local 174 return new CertPathValidator((CertPathValidatorSpi)instance.impl, 175 instance.provider, algorithm); 216 Instance instance = GetInstance.getInstance("CertPathValidator", local 218 return new CertPathValidator((CertPathValidatorSpi)instance.impl 253 Instance instance = GetInstance.getInstance("CertPathValidator", local [all...] |
CertStore.java | 38 import sun.security.jca.GetInstance.Instance; 91 * CRL while simultaneously searching for further certificates, for instance. 140 * <code>Certificate</code>s that match the selector. For instance, 170 * <code>CRL</code>s that match the selector. For instance, 237 Instance instance = GetInstance.getInstance("CertStore", local 239 return new CertStore((CertStoreSpi)instance.impl, 240 instance.provider, type, params); 307 Instance instance = GetInstance.getInstance("CertStore" local 361 Instance instance = GetInstance.getInstance("CertStore", local [all...] |
CertificateFactory.java | 40 import sun.security.jca.GetInstance.Instance; 55 * instance of <code>java.security.cert.X509Certificate</code>, and CRLs 56 * that are an instance of <code>java.security.cert.X509CRL</code>. 206 Instance instance = GetInstance.getInstance("CertificateFactory", local 208 return new CertificateFactory((CertificateFactorySpi)instance.impl, 209 instance.provider, type); 253 Instance instance = GetInstance.getInstance("CertificateFactory", local 255 return new CertificateFactory((CertificateFactorySpi)instance.impl 294 Instance instance = GetInstance.getInstance("CertificateFactory", local [all...] |
/art/tools/ahat/test/ |
PerformanceTest.java | 19 import com.android.tools.perflib.heap.Instance; 39 Instance bigArray = (Instance)dump.getDumpedThing("bigArray");
|
TestDump.java | 21 import com.android.tools.perflib.heap.Instance; 33 // loaded instance of TestDump and reuse it when possible. In theory the 62 * Return the value of a field in the DumpedStuff instance in the 67 Instance stuff = null; 70 stuff = (Instance) fields.getValue(); 80 * To improve performance, this returns a cached instance of the TestDump
|
/cts/suite/audio_quality/test/ |
LogTest.cpp | 33 Log::LogLevel level = Log::Instance()->getLogLevel(); 37 Log::Instance()->setLogLevel(Log::ELogV); 58 Log::Instance()->setLogLevel(level);
|
/libcore/ojluni/src/main/java/sun/security/jca/ |
GetInstance.java | 47 * Static inner class representing a newly created instance. 49 public static final class Instance { 53 private Instance(Provider provider, Object impl) { 152 public static Instance getInstance(String type, Class clazz, 184 public static Instance getInstance(String type, Class clazz, 203 public static Instance getInstance(String type, Class clazz, 209 public static Instance getInstance(String type, Class clazz, 215 public static Instance getInstance(String type, Class clazz, 221 public static Instance getInstance(String type, Class clazz, 234 public static Instance getInstance(Service s, Class clazz 236 Object instance = s.newInstance(null); local 243 Object instance = s.newInstance(param); local [all...] |
/external/eigen/bench/btl/generic_bench/ |
btl.hh | 153 For instance: "dir1/dir2/file.ext" leads to path="dir1/dir2/" and filename="file.ext" 188 Instance.m_selectedActionNames = config[i+1].split(":"); 199 Instance.tries = atoi(config[i+1].c_str()); 205 Instance.overwriteResults = true; 209 Instance.checkResults = false; 213 Instance.realclock = true; 223 if (Instance.m_selectedActionNames.empty()) 227 for (int i=0; i<Instance.m_selectedActionNames.size(); ++i) 228 if (name.contains(Instance.m_selectedActionNames[i])) 234 static BtlConfig Instance; [all...] |
/libcore/ojluni/src/main/java/javax/net/ssl/ |
KeyManagerFactory.java | 139 GetInstance.Instance instance = GetInstance.getInstance local 142 return new KeyManagerFactory((KeyManagerFactorySpi)instance.impl, 143 instance.provider, algorithm); 183 GetInstance.Instance instance = GetInstance.getInstance local 186 return new KeyManagerFactory((KeyManagerFactorySpi)instance.impl, 187 instance.provider, algorithm); 205 * @param provider an instance of the provider. 220 GetInstance.Instance instance = GetInstance.getInstanc local [all...] |
TrustManagerFactory.java | 138 GetInstance.Instance instance = GetInstance.getInstance local 141 return new TrustManagerFactory((TrustManagerFactorySpi)instance.impl, 142 instance.provider, algorithm); 182 GetInstance.Instance instance = GetInstance.getInstance local 185 return new TrustManagerFactory((TrustManagerFactorySpi)instance.impl, 186 instance.provider, algorithm); 204 * @param provider an instance of the provider. 219 GetInstance.Instance instance = GetInstance.getInstanc local [all...] |
/external/clang/include/clang/Frontend/ |
FrontendAction.h | 39 CompilerInstance *Instance; 57 /// \param CI - The current compiler instance, provided as a convenience, see 85 /// compiler instance. 111 /// @name Compiler Instance Access 115 assert(Instance && "Compiler instance not registered!"); 116 return *Instance; 119 void setCompilerInstance(CompilerInstance *Value) { Instance = Value; } 197 /// \param CI - The compiler instance this action is being run from. The 246 /// \param CI - The compiler instance, for use in reporting diagnostics [all...] |
/system/netd/server/ |
NetlinkManager.h | 50 static NetlinkManager *Instance();
|
/system/vold/ |
NetlinkHandler.cpp | 46 VolumeManager *vm = VolumeManager::Instance();
|
/external/webrtc/webrtc/base/ |
thread.cc | 38 ThreadManager* ThreadManager::Instance() { 45 return ThreadManager::Instance()->CurrentThread(); 200 ThreadManager::Instance(); 228 return WrapCurrentWithThreadManager(ThreadManager::Instance(), true); 233 ThreadManager::Instance()->SetCurrentThread(NULL); 246 WrapCurrentWithThreadManager(ThreadManager::Instance(), false); 288 ThreadManager::Instance()->SetCurrentThread(init->thread); 515 if (!ThreadManager::Instance()->CurrentThread()) { 516 ThreadManager::Instance()->SetCurrentThread(this); 522 if (ThreadManager::Instance()->CurrentThread() == this) [all...] |
/art/tools/ahat/src/ |
BitmapHandler.java | 19 import com.android.tools.perflib.heap.Instance; 41 Instance inst = mSnapshot.findInstance(id);
|
Site.java | 21 import com.android.tools.perflib.heap.Instance; 54 private List<Instance> mObjects; 86 mObjects = new ArrayList<Instance>(); 92 * Add an instance to this site. 93 * Returns the site at which the instance was allocated. 95 public Site add(int stackId, int stackDepth, Iterator<StackFrame> path, Instance inst) { 143 public Collection<Instance> getObjects() {
|
/external/deqp/external/vulkancts/modules/vulkan/draw/ |
vktDrawTestCaseUtil.hpp | 60 template<typename Instance> 74 return new Instance(context, m_shaderPaths, m_topology);
|
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/ |
vktDynamicStateTestCaseUtil.hpp | 69 template<typename Instance> 82 return new Instance(context, m_shaderPaths);
|
/external/eigen/bench/btl/generic_bench/timers/ |
portable_perf_analyzer.hh | 56 for (int i=1; i<BtlConfig::Instance.tries; ++i) 67 if (BtlConfig::Instance.checkResults && size<128)
|