Searched refs:slot (Results 101 - 125 of 524) sorted by relevance

1234567891011>>

/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/ssl/
H A Dclient_cert_store_chromeos_unittest.cc56 // ClientCertStoreChromeOS filters also for the right slot, we have to import
69 crypto::ScopedPK11Slot slot; local
72 slot = crypto::GetPublicSlotForChromeOSUser(user_.username_hash());
75 slot.reset(PK11_ReferenceSlot(system_db_.slot()));
80 if (!slot) {
81 LOG(ERROR) << "Could not get the NSS key slot";
89 GetTestCertsDirectory(), "client_1.pk8", slot.get()) ||
91 GetTestCertsDirectory(), "client_2.pk8", slot.get())) {
98 if (!ImportClientCertToSlot(*it, slot
[all...]
/external/chromium_org/net/test/
H A Dcert_test_util.h36 // |slot|.
40 PK11SlotInfo* slot);
43 PK11SlotInfo* slot);
49 PK11SlotInfo* slot);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_vs.c54 * \param slot which constant buffer in [0, PIPE_MAX_CONSTANT_BUFFERS-1]
60 unsigned slot,
69 if (size > draw->vs.const_storage_size[slot]) {
70 if (draw->vs.aligned_constant_storage[slot]) {
71 align_free((void *)draw->vs.aligned_constant_storage[slot]);
72 draw->vs.const_storage_size[slot] = 0;
74 draw->vs.aligned_constant_storage[slot] =
76 if (draw->vs.aligned_constant_storage[slot]) {
77 draw->vs.const_storage_size[slot] = size;
81 if (draw->vs.aligned_constant_storage[slot]) {
59 draw_vs_set_constants(struct draw_context *draw, unsigned slot, const void *constants, unsigned size) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_vs.c54 * \param slot which constant buffer in [0, PIPE_MAX_CONSTANT_BUFFERS-1]
60 unsigned slot,
69 if (size > draw->vs.const_storage_size[slot]) {
70 if (draw->vs.aligned_constant_storage[slot]) {
71 align_free((void *)draw->vs.aligned_constant_storage[slot]);
72 draw->vs.const_storage_size[slot] = 0;
74 draw->vs.aligned_constant_storage[slot] =
76 if (draw->vs.aligned_constant_storage[slot]) {
77 draw->vs.const_storage_size[slot] = size;
81 if (draw->vs.aligned_constant_storage[slot]) {
59 draw_vs_set_constants(struct draw_context *draw, unsigned slot, const void *constants, unsigned size) argument
[all...]
/external/chromium_org/chrome/utility/importer/
H A Dnss_decryptor_win.h97 typedef void (*PK11FreeSlotFunc)(PK11SlotInfo *slot);
98 typedef SECStatus (*PK11CheckUserPasswordFunc)(PK11SlotInfo *slot, char *pw);
100 (*PK11AuthenticateFunc)(PK11SlotInfo *slot, PRBool loadCerts, void *wincx);
148 void FreeSlot(PK11SlotInfo* slot) const { PK11_FreeSlot(slot); }
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dgen6_sf_state.c68 /* Find the VUE slot for this attribute. */
69 int slot = vue_map->vert_result_to_slot[vs_attr]; local
74 if (slot == -1 && vs_attr == VERT_RESULT_COL0)
75 slot = vue_map->vert_result_to_slot[VERT_RESULT_BFC0];
76 if (slot == -1 && vs_attr == VERT_RESULT_COL1)
77 slot = vue_map->vert_result_to_slot[VERT_RESULT_BFC1];
79 if (slot == -1) {
91 int source_attr = slot - 2 * urb_entry_read_offset;
94 /* If we are doing two-sided color, and the VUE slot following this one
99 ((vue_map->slot_to_vert_result[slot]
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dgen6_sf_state.c68 /* Find the VUE slot for this attribute. */
69 int slot = vue_map->vert_result_to_slot[vs_attr]; local
74 if (slot == -1 && vs_attr == VERT_RESULT_COL0)
75 slot = vue_map->vert_result_to_slot[VERT_RESULT_BFC0];
76 if (slot == -1 && vs_attr == VERT_RESULT_COL1)
77 slot = vue_map->vert_result_to_slot[VERT_RESULT_BFC1];
79 if (slot == -1) {
91 int source_attr = slot - 2 * urb_entry_read_offset;
94 /* If we are doing two-sided color, and the VUE slot following this one
99 ((vue_map->slot_to_vert_result[slot]
[all...]
/external/chromium_org/v8/src/
H A Dtype-info.h29 bool CallIsMonomorphic(int slot);
32 bool CallNewIsMonomorphic(int slot);
63 Handle<JSFunction> GetCallTarget(int slot);
64 Handle<AllocationSite> GetCallAllocationSite(int slot);
65 Handle<JSFunction> GetCallNewTarget(int slot);
66 Handle<AllocationSite> GetCallNewAllocationSite(int slot);
116 Handle<Object> GetInfo(int slot);
/external/chromium_org/chromeos/network/onc/
H A Donc_certificate_importer_impl_unittest.cc79 crypto::ScopedPK11Slot(PK11_ReferenceSlot(public_nssdb_.slot())),
80 crypto::ScopedPK11Slot(PK11_ReferenceSlot(private_nssdb_.slot()))));
158 // List of certs in the nssdb's public slot.
160 // List of certs in the nssdb's "private" slot.
166 return ListCertsInSlot(public_nssdb_.slot());
170 return ListCertsInSlot(private_nssdb_.slot());
173 net::CertificateList ListCertsInSlot(PK11SlotInfo* slot) { argument
175 CERTCertList* cert_list = PK11_ListCertsInSlot(slot);
212 PK11_ListPrivKeysInSlot(private_nssdb_.slot(), NULL, NULL);
229 PK11_ListPublicKeysInSlot(private_nssdb_.slot(), NUL
[all...]
/external/chromium_org/base/metrics/
H A Dstats_table.cc278 // thread exits and return the table slot.
284 int slot; member in struct:base::StatsTable::TLSData
338 return data->slot;
342 int slot = 0; local
347 // so that two threads don't grab the same slot. Fortunately,
352 slot = FindEmptyThread();
353 if (!slot) {
361 strlcpy(internal_->thread_name(slot), thread_name.c_str(),
363 *(internal_->thread_tid(slot)) = PlatformThread::CurrentId();
364 *(internal_->thread_pid(slot))
480 int slot = table->GetSlot(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashTraits.h79 static void constructDeletedValue(T& slot, bool) { slot = static_cast<T>(-1); } argument
119 static void constructDeletedValue(T& slot, bool) { slot = -std::numeric_limits<T>::infinity(); } argument
131 static void constructDeletedValue(T& slot, bool) { slot = std::numeric_limits<T>::max() - 1; } argument
138 static void constructDeletedValue(P*& slot, bool) { slot = reinterpret_cast<P*>(-1); } argument
144 static void constructDeletedValue(T& slot, bool) { new (NotNull, &slot) argument
232 constructDeletedValue(TraitType& slot, bool zeroValue) argument
292 constructDeletedValue(TraitType& slot, bool zeroValue) argument
[all...]
/external/chromium_org/net/third_party/mozilla_security_manager/
H A DnsNSSCertificateDB.cpp62 bool ImportCACerts(PK11SlotInfo* slot, argument
67 if (!slot || certificates.empty() || !root)
86 // and it doesn't take the slot as an argument either. Instead, we use
89 slot,
95 slot).c_str(),
146 // Mozilla uses CERT_ImportCerts, which doesn't take a slot arg. We use
149 slot,
155 slot).c_str(),
172 PK11SlotInfo* slot,
176 if (!slot || certificate
171 ImportServerCert( PK11SlotInfo* slot, const net::CertificateList& certificates, net::NSSCertDatabase::TrustBits trustBits, net::NSSCertDatabase::ImportCertFailureList* not_imported) argument
[all...]
/external/ltrace/
H A Dvect.c27 slot(struct vect *vec, size_t i) function
72 if (clone(slot(target, i), cslot(source, i), data) < 0)
82 dtor(slot(target, i), data);
127 memcpy(slot(vec, vec->size++), eltp, vec->elt_size);
142 dtor(slot(vec, i), data);
146 memmove(slot(vec, start), slot(vec, end),
147 slot(vec, vec->size) - slot(vec, end));
178 void *slt = slot(ve
[all...]
/external/chromium_org/ui/app_list/views/
H A Dapps_grid_view.h229 Index() : page(-1), slot(-1) {}
230 Index(int page, int slot) : page(page), slot(slot) {} argument
233 return page == other.page && slot == other.slot;
236 return page != other.page || slot != other.slot;
242 return slot < other.slot;
246 int slot; // Which slot in the page an item view is in. member in struct:app_list::AppsGridView::Index
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_state_setup.c135 unsigned slot,
141 LLVMValueRef idx = lp_build_const_int32(gallivm, slot);
161 unsigned slot,
166 store_coef(gallivm, args, slot, vert, zerovec, zerovec);
178 unsigned slot )
188 store_coef(gallivm, args, slot, a0, zerovec, zerovec);
354 unsigned slot,
389 store_coef(gallivm, args, slot, attr_0, dadx, dady);
396 unsigned slot,
401 args, slot,
133 store_coef(struct gallivm_state *gallivm, struct lp_setup_args *args, unsigned slot, LLVMValueRef a0, LLVMValueRef dadx, LLVMValueRef dady) argument
159 emit_constant_coef4(struct gallivm_state *gallivm, struct lp_setup_args *args, unsigned slot, LLVMValueRef vert) argument
352 emit_coef4( struct gallivm_state *gallivm, struct lp_setup_args *args, unsigned slot, LLVMValueRef a0, LLVMValueRef a1, LLVMValueRef a2) argument
394 emit_linear_coef( struct gallivm_state *gallivm, struct lp_setup_args *args, unsigned slot, LLVMValueRef attribv[3]) argument
417 apply_perspective_corr( struct gallivm_state *gallivm, struct lp_setup_args *args, unsigned slot, LLVMValueRef attribv[3]) argument
437 emit_position_coef( struct gallivm_state *gallivm, struct lp_setup_args *args, int slot, LLVMValueRef attribv[3]) argument
530 unsigned slot; local
952 int i, slot; local
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_state_setup.c135 unsigned slot,
141 LLVMValueRef idx = lp_build_const_int32(gallivm, slot);
161 unsigned slot,
166 store_coef(gallivm, args, slot, vert, zerovec, zerovec);
178 unsigned slot )
188 store_coef(gallivm, args, slot, a0, zerovec, zerovec);
354 unsigned slot,
389 store_coef(gallivm, args, slot, attr_0, dadx, dady);
396 unsigned slot,
401 args, slot,
133 store_coef(struct gallivm_state *gallivm, struct lp_setup_args *args, unsigned slot, LLVMValueRef a0, LLVMValueRef dadx, LLVMValueRef dady) argument
159 emit_constant_coef4(struct gallivm_state *gallivm, struct lp_setup_args *args, unsigned slot, LLVMValueRef vert) argument
352 emit_coef4( struct gallivm_state *gallivm, struct lp_setup_args *args, unsigned slot, LLVMValueRef a0, LLVMValueRef a1, LLVMValueRef a2) argument
394 emit_linear_coef( struct gallivm_state *gallivm, struct lp_setup_args *args, unsigned slot, LLVMValueRef attribv[3]) argument
417 apply_perspective_corr( struct gallivm_state *gallivm, struct lp_setup_args *args, unsigned slot, LLVMValueRef attribv[3]) argument
437 emit_position_coef( struct gallivm_state *gallivm, struct lp_setup_args *args, int slot, LLVMValueRef attribv[3]) argument
530 unsigned slot; local
952 int i, slot; local
[all...]
/external/chromium_org/base/threading/
H A Dthread_local_storage.cc14 // pointer to the destructor for each slot. We keep this array of pointers in a
16 // We use the single OS-level TLS slot (giving us one pointer per thread) to
40 // An array of destructor function pointers for the slots. If a slot has a
68 // another TLS slot.
134 // Try to destroy the first-created-slot (which is slot 1) in our last
135 // destructor call. That user was able to function, and define a slot with
142 for (int slot = last_used_tls_key; slot > 0; --slot) {
[all...]
H A Dthread_local_storage_unittest.cc76 ThreadLocalStorage::Slot slot; local
77 slot.Set(reinterpret_cast<void*>(123));
78 int value = reinterpret_cast<intptr_t>(slot.Get());
88 // unsynchronized with the following users of the same TSD slot. This results
/external/chromium_org/net/http/
H A Ddes.cc107 PK11SlotInfo* slot = NULL; local
117 slot = PK11_GetInternalSlot();
118 if (!slot)
123 symkey = PK11_ImportSymKey(slot, cipher_mech,
156 if (slot)
157 PK11_FreeSlot(slot);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElementData.cpp168 void* slot = Heap::allocate<ElementData>(sizeForShareableElementDataWithAttributeCount(attributes.size())); local
170 void* slot = WTF::fastMalloc(sizeForShareableElementDataWithAttributeCount(attributes.size()));
172 return adoptRefWillBeNoop(new (slot) ShareableElementData(attributes));
208 void* slot = Heap::allocate<ElementData>(sizeForShareableElementDataWithAttributeCount(m_attributeVector.size())); local
210 void* slot = WTF::fastMalloc(sizeForShareableElementDataWithAttributeCount(m_attributeVector.size()));
212 return adoptRefWillBeNoop(new (slot) ShareableElementData(*this));
/external/chromium_org/v8/src/heap/
H A Dincremental-marking.h100 static void RecordWriteFromCode(HeapObject* obj, Object** slot,
103 // Record a slot for compaction. Returns false for objects that are
109 INLINE(bool BaseRecordWrite(HeapObject* obj, Object** slot, Object* value));
110 INLINE(void RecordWrite(HeapObject* obj, Object** slot, Object* value));
113 INLINE(void RecordWriteOfCodeEntry(JSFunction* host, Object** slot,
117 void RecordWriteSlow(HeapObject* obj, Object** slot, Object* value);
120 void RecordWriteOfCodeEntrySlow(JSFunction* host, Object** slot, Code* value);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayerClipper.h62 ClipRectsContext(const RenderLayer* root, ClipRectsCacheSlot slot, OverlayScrollbarSizeRelevancy relevancy = IgnoreOverlayScrollbarSize, const LayoutSize& accumulation = LayoutSize()) argument
65 , cacheSlot(slot)
67 , respectOverflowClip(slot == PaintingClipRectsIgnoringOverflowClip ? IgnoreOverflowClip : RespectOverflowClip)
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/
H A Dmapi.c175 int slot = stub_get_slot(stub); local
179 func = table_get_func(noop, slot);
180 table_set_func(tbl, slot, func);
/external/chromium_org/v8/src/x64/
H A Dframes-x64.h110 inline void StackHandler::SetFp(Address slot, Address fp) { argument
113 Memory::Address_at(slot + kPointerSize) = 0;
115 Memory::Address_at(slot) = fp;

Completed in 960 milliseconds

1234567891011>>