HomeSort by relevance Sort by last modified time
    Searched refs:Init (Results 1 - 25 of 1776) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
debug-info-context.cpp 12 class Init {
15 static ios_base::Init __ioinit;
  /external/llvm/include/llvm/Support/
JamCRC.h 16 // Init : FFFFFFFF
22 // N.B. We permit flexibility of the "Init" value. Some consumers of this need
36 JamCRC(uint32_t Init = 0xFFFFFFFFU) : CRC(Init) {}
  /external/libweave/third_party/chromium/base/
command_line.h 26 static bool Init(int argc, const char* const* argv) { return true; }
  /system/keymaster/
kdf_test.cpp 35 ASSERT_TRUE(kdf.Init(KM_DIGEST_SHA1, key, 128, salt, 128));
36 ASSERT_TRUE(kdf.Init(KM_DIGEST_SHA_2_256, key, 128, salt, 128));
37 ASSERT_TRUE(kdf.Init(KM_DIGEST_SHA1, key, 128, nullptr, 0));
38 ASSERT_FALSE(kdf.Init(KM_DIGEST_MD5, key, 128, salt, 128));
39 ASSERT_FALSE(kdf.Init(KM_DIGEST_SHA1, nullptr, 0, salt, 128));
40 ASSERT_FALSE(kdf.Init(KM_DIGEST_SHA1, nullptr, 128, salt, 128));
41 ASSERT_FALSE(kdf.Init(KM_DIGEST_SHA1, key, 0, salt, 128));
hkdf.h 35 bool Init(Buffer& secret, Buffer& salt) {
36 return Init(secret.peek_read(), secret.available_read(), salt.peek_read(),
40 bool Init(const uint8_t* secret, size_t secret_len, const uint8_t* salt, size_t salt_len) {
41 return Kdf::Init(KM_DIGEST_SHA_2_256, secret, secret_len, salt, salt_len);
  /art/runtime/base/
scoped_flock.h 42 bool Init(const char* filename, int flags, bool block, std::string* error_msg);
43 // Calls Init(filename, O_CREAT | O_RDWR, true, errror_msg)
44 bool Init(const char* filename, std::string* error_msg);
48 bool Init(File* file, std::string* error_msg);
scoped_flock_test.cc 34 ASSERT_TRUE(file_lock.Init(scratch_file.GetFilename().c_str(),
37 ASSERT_FALSE(file_lock.Init("/guaranteed/not/to/exist", &error_msg));
  /system/bt/service/test/
settings_unittest.cpp 52 EXPECT_TRUE(base::CommandLine::Init(arraysize(argv), argv));
53 EXPECT_TRUE(settings_.Init());
60 EXPECT_TRUE(base::CommandLine::Init(arraysize(argv), argv));
61 EXPECT_FALSE(settings_.Init());
68 EXPECT_TRUE(base::CommandLine::Init(arraysize(argv), argv));
69 EXPECT_FALSE(settings_.Init());
76 EXPECT_TRUE(base::CommandLine::Init(arraysize(argv), argv));
77 EXPECT_FALSE(settings_.Init());
84 EXPECT_TRUE(base::CommandLine::Init(arraysize(argv), argv));
85 EXPECT_FALSE(settings_.Init());
    [all...]
  /system/core/metricsd/include/metrics/
metrics_collector_service_client.h 31 bool Init();
35 // same name, or false if the service was not registered at Init() time.
  /external/llvm/include/llvm/TableGen/
Record.h 220 class Init {
259 Init(const Init &) = delete;
260 Init &operator=(const Init &) = delete;
267 explicit Init(InitKind K) : Kind(K) {}
270 virtual ~Init() {}
292 /// Init based on the passed in type.
293 virtual Init *convertInitializerTo(RecTy *Ty) const = 0;
297 /// out, returning them as a new init of bits type. If it is not legal to us
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dmodshow.idl 30 HRESULT Init(
  /system/update_engine/update_manager/
state_factory.cc 57 if (!(config_provider->Init() &&
58 device_policy_provider->Init() &&
59 random_provider->Init() &&
60 shill_provider->Init() &&
61 system_provider->Init() &&
62 time_provider->Init() &&
63 updater_provider->Init())) {
  /system/update_engine/common/
terminator.cc 27 void Terminator::Init() {
33 void Terminator::Init(int exit_status) {
35 Init();
  /external/ceres-solver/internal/ceres/
block_evaluate_preparer.h 49 // Using Init() instead of a constructor allows for allocating this structure
52 void Init(int const* const* jacobian_layout,
  /external/drm_hwcomposer/
drmcompositorworker.h 31 int Init();
  /external/libchrome/crypto/
hmac.h 41 // Initializes this instance using |key| of the length |key_length|. Call Init
50 // Init() may fail.
51 bool Init(const unsigned char* key, size_t key_length) WARN_UNUSED_RESULT;
53 // Initializes this instance using |key|. Call Init
55 bool Init(SymmetricKey* key) WARN_UNUSED_RESULT;
57 // Initializes this instance using |key|. Call Init only once. It returns
59 bool Init(const base::StringPiece& key) WARN_UNUSED_RESULT {
60 return Init(reinterpret_cast<const unsigned char*>(key.data()),
65 // to the constructor and the key supplied to the Init method. The HMAC is
72 // supplied to the Init method. Use of this method is strongly recommende
    [all...]
  /external/libchrome/
testrunner.cc 25 base::CommandLine::Init(argc, argv);
  /external/lzma/CPP/7zip/Archive/Common/
HandlerOut.h 41 void Init();
43 CMultiMethodProps() { Init(); }
57 void Init();
58 CSingleMethodProps() { Init(); }
  /external/lzma/CPP/7zip/Crypto/
RandGen.h 13 void Init();
  /external/lzma/CPP/Common/
MyTypes.h 17 void Init()
  /external/webrtc/talk/media/webrtc/
webrtcvideocapturerfactory.cc 37 if (!capturer->Init(device)) {
  /external/webrtc/webrtc/sound/
platformsoundsystemfactory.cc 28 if (!instance_->Init()) {
  /external/webrtc/webrtc/test/testsupport/mock/
mock_frame_reader.h 23 MOCK_METHOD0(Init, bool());
mock_frame_writer.h 23 MOCK_METHOD0(Init, bool());
  /hardware/qcom/media/msm8974/mm-video-legacy/DivxDrmDecrypt/inc/
DivXDrmDecrypt.h 39 virtual OMX_ERRORTYPE Init() = 0;

Completed in 589 milliseconds

1 2 3 4 5 6 7 8 91011>>