HomeSort by relevance Sort by last modified time
    Searched defs:Init (Results 26 - 50 of 566) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium/crypto/
encryptor_nss.cc 25 bool Encryptor::Init(SymmetricKey* key, Mode mode, const std::string& iv) {
hmac.h 33 // Initializes this instance using |key| of the length |key_length|. Call Init
35 bool Init(const unsigned char* key, int key_length);
37 // Initializes this instance using |key|. Call Init only once. It returns
39 bool Init(const std::string& key) {
40 return Init(reinterpret_cast<const unsigned char*>(key.data()),
45 // to the constructor and the key supplied to the Init method. The HMAC is
hmac_openssl.cc 29 bool HMAC::Init(const unsigned char* key, int key_length) {
30 // Init must not be called more than once on the same HMAC object.
47 DCHECK(!plat_->key.empty()); // Init must be called before Sign.
  /external/chromium/net/base/
test_root_certs_openssl.cc 47 void TestRootCerts::Init() {
  /external/chromium/net/disk_cache/
mapped_file_posix.cc 16 void* MappedFile::Init(const FilePath& name, size_t size) {
18 if (init_ || !File::Init(name))
mapped_file_win.cc 13 void* MappedFile::Init(const FilePath& name, size_t size) {
15 if (init_ || !File::Init(name))
  /external/protobuf/src/google/protobuf/stubs/
once.cc 66 // internal_ may be non-NULL if Init() was already called.
70 void ProtobufOnceType::Init(void (*init_func)()) {
  /external/webrtc/src/system_wrappers/source/
rw_lock_generic.cc 35 int RWLockWrapperGeneric::Init()
rw_lock_posix.cc 23 int RWLockPosix::Init()
  /external/webrtc/test/testsupport/
frame_reader.cc 31 bool FrameReaderImpl::Init() {
frame_writer.cc 29 bool FrameWriterImpl::Init() {
  /ndk/sources/cxx-stl/llvm-libc++/src/
iostream.cpp 32 ios_base::Init __start_std_streams;
34 ios_base::Init::Init()
53 ios_base::Init::~Init()
  /development/testrunner/
logger.py 21 Init(path) must be called to enable logging to a file
30 def Init(log_file_path):
  /external/ceres-solver/include/ceres/internal/
manual_constructor.h 118 // You can pass up to four constructor arguments as arguments of Init().
119 inline void Init() {
124 inline void Init(const T1& p1) {
129 inline void Init(const T1& p1, const T2& p2) {
134 inline void Init(const T1& p1, const T2& p2, const T3& p3) {
139 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4) {
144 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4,
151 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4,
158 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4,
165 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4
    [all...]
  /external/ceres-solver/internal/ceres/
scratch_evaluate_preparer.cc 47 preparers[i].Init(max_derivatives_per_residual_block);
52 void ScratchEvaluatePreparer::Init(int max_derivatives_per_residual_block) {
  /external/chromium/base/i18n/
break_iterator.cc 29 bool BreakIterator::Init() {
  /external/chromium/chrome/browser/chromeos/cros/
brightness_library.cc 20 Init();
46 void Init() {
  /external/chromium/chrome/browser/chromeos/
drop_shadow_label.cc 23 Init();
26 void DropShadowLabel::Init() {
setting_level_bubble_view.cc 35 void SettingLevelBubbleView::Init(SkBitmap* icon, int level_percent) {
wm_overview_favicon.cc 34 void WmOverviewFavicon::Init(WmOverviewSnapshot* snapshot) {
39 WidgetGtk::Init(NULL, gfx::Rect(0, 0, 0, 0));
55 CHECK(favicon_view_) << "Init not called before setting favicon.";
wm_overview_title.cc 61 void WmOverviewTitle::Init(const gfx::Size& size,
93 WidgetGtk::Init(NULL, gfx::Rect(size));
  /external/chromium/chrome/browser/chromeos/login/
password_changed_view.cc 79 Init();
83 void PasswordChangedView::Init() {
wizard_accessibility_helper.cc 45 void WizardAccessibilityHelper::Init() {
49 // SetAccessibilityEnabled(true) fully enables accessibility. Init() is
  /external/chromium/chrome/browser/chromeos/status/
status_area_view.cc 35 void StatusAreaView::Init() {
  /external/chromium/chrome/browser/debugger/
devtools_protocol_handler.cc 50 NewRunnableMethod(this, &DevToolsProtocolHandler::Init));
53 void DevToolsProtocolHandler::Init() {

Completed in 1853 milliseconds

12 3 4 5 6 7 8 91011>>