Searched defs:slot (Results 1 - 25 of 337) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/freetype/include/freetype/
H A Dftsynth.h68 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
72 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
H A Dftbitmap.h123 /* you should call @FT_GlyphSlot_Own_Bitmap on the slot first. */
178 /* Make sure that a glyph slot owns `slot->bitmap'. */
181 /* slot :: The glyph slot. */
191 FT_GlyphSlot_Own_Bitmap( FT_GlyphSlot slot ); variable
/external/freetype/include/
H A Dftsynth.h68 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
72 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
H A Dftbitmap.h123 /* you should call @FT_GlyphSlot_Own_Bitmap on the slot first. */
178 /* Make sure that a glyph slot owns `slot->bitmap'. */
181 /* slot :: The glyph slot. */
191 FT_GlyphSlot_Own_Bitmap( FT_GlyphSlot slot ); variable
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftsynth.h68 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
72 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
H A Dftbitmap.h123 /* you should call @FT_GlyphSlot_Own_Bitmap on the slot first. */
178 /* Make sure that a glyph slot owns `slot->bitmap'. */
181 /* slot :: The glyph slot. */
191 FT_GlyphSlot_Own_Bitmap( FT_GlyphSlot slot ); variable
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftsynth.h68 FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); variable
72 FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); variable
H A Dftbitmap.h123 /* you should call @FT_GlyphSlot_Own_Bitmap on the slot first. */
178 /* Make sure that a glyph slot owns `slot->bitmap'. */
181 /* slot :: The glyph slot. */
191 FT_GlyphSlot_Own_Bitmap( FT_GlyphSlot slot ); variable
/external/chromium_org/net/base/
H A Dkeygen_handler_nss.cc21 crypto::ScopedPK11Slot slot; local
23 slot = crypto_module_delegate_->RequestSlot().Pass();
25 LOG(ERROR) << "Could not get an NSS key slot.";
30 if (SECSuccess != PK11_Authenticate(slot.get(),
33 LOG(ERROR) << "Could not authenticate to the key slot.";
38 slot.get(), stores_key_);
/external/chromium_org/crypto/
H A Dscoped_test_system_nss_key_slot.cc17 ScopedPK11Slot(PK11_ReferenceSlot(test_db_->slot())));
28 PK11SlotInfo* ScopedTestSystemNSSKeySlot::slot() const { function in class:crypto::ScopedTestSystemNSSKeySlot
29 return test_db_->slot();
H A Dscoped_test_nss_db.h24 PK11SlotInfo* slot() const { return slot_.get(); } function in class:crypto::ScopedTestNSSDB
/external/elfutils/0.153/libdwfl/
H A Ddwfl_module_dwarf_cfi.c55 __libdwfl_set_cfi (Dwfl_Module *mod, Dwarf_CFI **slot, Dwarf_CFI *cfi) argument
64 if (slot == &mod->eh_cfi)
71 return *slot = cfi;
/external/chromium_org/base/threading/
H A Dthread_local_android.cc13 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) { argument
14 bool succeed = slot->Initialize(NULL);
19 void ThreadLocalPlatform::FreeSlot(SlotType slot) { argument
20 slot.Free();
24 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) { argument
25 return slot.Get();
29 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
30 slot.Set(value);
H A Dthread_local_posix.cc17 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) { argument
18 int error = pthread_key_create(slot, NULL);
23 void ThreadLocalPlatform::FreeSlot(SlotType slot) { argument
24 int error = pthread_key_delete(slot);
29 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) { argument
30 return pthread_getspecific(slot);
34 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
35 int error = pthread_setspecific(slot, value);
H A Dthread_local_win.cc15 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) { argument
16 *slot = TlsAlloc();
17 CHECK_NE(*slot, TLS_OUT_OF_INDEXES);
21 void ThreadLocalPlatform::FreeSlot(SlotType slot) { argument
22 if (!TlsFree(slot)) {
23 NOTREACHED() << "Failed to deallocate tls slot with TlsFree().";
28 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) { argument
29 return TlsGetValue(slot);
33 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
34 if (!TlsSetValue(slot, valu
[all...]
/external/chromium_org/mojo/public/cpp/utility/lib/
H A Dthread_local_posix.cc13 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) { argument
14 if (pthread_key_create(slot, NULL) != 0) {
20 void ThreadLocalPlatform::FreeSlot(SlotType slot) { argument
21 if (pthread_key_delete(slot) != 0) {
27 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) { argument
28 return pthread_getspecific(slot);
32 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
33 if (pthread_setspecific(slot, value) != 0) {
H A Dthread_local_win.cc14 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) { argument
15 *slot = TlsAlloc();
16 assert(*slot != TLS_OUT_OF_INDEXES);
20 void ThreadLocalPlatform::FreeSlot(SlotType slot) { argument
21 if (!TlsFree(slot)) {
27 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) { argument
28 return TlsGetValue(slot);
32 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { argument
33 if (!TlsSetValue(slot, value)) {
/external/chromium_org/components/ownership/
H A Dmock_owner_key_util.cc26 PK11SlotInfo* slot) {
24 FindPrivateKeyInSlot( const std::vector<uint8>& key, PK11SlotInfo* slot) argument
H A Downer_key_util_impl.cc56 PK11SlotInfo* slot) {
57 return crypto::RSAPrivateKey::FindFromPublicKeyInfoInSlot(key, slot);
54 FindPrivateKeyInSlot( const std::vector<uint8>& key, PK11SlotInfo* slot) argument
/external/chromium_org/crypto/third_party/nss/
H A Dpk11akey.cc49 PK11SlotInfo* slot,
62 PK11SymKey* key = PK11_PBEKeyGen(slot,
82 *private_key = PK11_UnwrapPrivKey(slot, key, crypto_mech_type, crypto_param,
48 ImportEncryptedECPrivateKeyInfoAndReturnKey( PK11SlotInfo* slot, SECKEYEncryptedPrivateKeyInfo* epki, SECItem* password, SECItem* nickname, SECItem* public_value, PRBool permanent, PRBool sensitive, SECKEYPrivateKey** private_key, void* wincx) argument
/external/chromium_org/net/cert/
H A Dcert_database_nss.cc42 PK11SlotInfo* slot = PK11_KeyForCertExists(cert, NULL, NULL); local
43 if (!slot)
46 PK11_FreeSlot(slot);
54 crypto::ScopedPK11Slot slot(PK11_KeyForCertExists(cert, &key, NULL));
55 if (!slot.get())
61 slot.get());
66 rv = PK11_ImportCert(slot.get(), cert, key, nickname.c_str(), PR_FALSE);
/external/chromium_org/net/test/
H A Dcert_test_util_nss.cc22 PK11SlotInfo* slot) {
37 crypto::RSAPrivateKey::CreateSensitiveFromPrivateKeyInfo(slot,
45 PK11SlotInfo* slot) {
49 SECStatus rv = PK11_ImportCert(slot,
66 PK11SlotInfo* slot) {
67 if (!ImportSensitiveKeyFromFile(dir, key_filename, slot)) {
79 if (!ImportClientCertToSlot(cert, slot))
83 // import to |slot|. However this should not make a difference as NSS handles
19 ImportSensitiveKeyFromFile( const base::FilePath& dir, const std::string& key_filename, PK11SlotInfo* slot) argument
44 ImportClientCertToSlot(const scoped_refptr<X509Certificate>& cert, PK11SlotInfo* slot) argument
62 ImportClientCertAndKeyFromFile( const base::FilePath& dir, const std::string& cert_filename, const std::string& key_filename, PK11SlotInfo* slot) argument
/external/chromium_org/third_party/WebKit/Source/platform/testing/
H A DArenaTestHelpers.h56 size_t slot = m_allocatedRegions.find(ptr); variable
57 ASSERT_NE(slot, kNotFound);
58 m_allocatedRegions.remove(slot);
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/
H A Dentry.c79 entry_get_public(int slot) argument
82 return public_entries[slot];
86 entry_generate(int slot) argument
92 entry_patch(mapi_func entry, int slot) argument
H A Dentry_x86-64_tls.h54 #define STUB_ASM_CODE(slot) \
57 "jmp *(8 * " slot ")(%r11)"
83 entry_get_public(int slot) argument
85 return (mapi_func) (x86_64_entry_start + slot * 32);
89 entry_patch(mapi_func entry, int slot) argument
92 *((unsigned int *) (code + 12)) = slot * sizeof(mapi_func);
96 entry_generate(int slot) argument
121 entry_patch(entry, slot);

Completed in 3346 milliseconds

1234567891011>>