Searched refs:pValue (Results 1 - 25 of 30) sorted by relevance

12

/macosx-10.10/bind9-45.101/bind9/bin/pkcs11/
H A Dpkcs11-keygen.c183 search_template[0].pValue = label;
185 publickey_template[0].pValue = label;
187 privatekey_template[0].pValue = label;
279 privatekey_template[4].pValue = &falsevalue;
280 privatekey_template[5].pValue = &truevalue;
H A Dpkcs11-destroy.c141 search_template[0].pValue = label;
H A Dpkcs11-list.c147 search_template[0].pValue = label;
/macosx-10.10/Heimdal-398.1.2/lib/hx509/
H A Dks_p11.c521 query[i].pValue = NULL;
529 query[i].pValue = malloc(query[i].ulValueLen);
530 if (query[i].pValue == NULL) {
547 if (query[i].pValue)
548 free(query[i].pValue);
549 query[i].pValue = NULL;
555 if (query[i].pValue)
556 free(query[i].pValue);
557 query[i].pValue = NULL;
580 query.pValue
[all...]
H A Dsoftp11.c214 memcmp(attributes[i].pValue, obj->attrs[j].attribute.pValue,
246 ck_true = attributes[i].pValue;
256 class = attributes[i].pValue;
339 CK_VOID_PTR pValue,
352 o->attrs[i].attribute.pValue = malloc(ulValueLen);
353 if (o->attrs[i].attribute.pValue == NULL && ulValueLen != 0)
355 memcpy(o->attrs[i].attribute.pValue, pValue, ulValueLen);
650 if (state->find.attributes[i].pValue)
336 add_object_attribute(struct st_object *o, int secret, CK_ATTRIBUTE_TYPE type, CK_VOID_PTR pValue, CK_ULONG ulValueLen) argument
[all...]
/macosx-10.10/IOKitUser-1050.1.21/hid.subproj/
H A DIOHIDDevicePlugIn.h218 IOReturn (*getValue)(void * self, IOHIDElementRef element, IOHIDValueRef * pValue, uint32_t timeout, IOHIDValueCallback callback, void * context, IOOptionBits options); \
326 @param pValue Pointer to a IOHIDValueRef to return the element value.
334 IOReturn (*getValue)(void * self, IOHIDElementRef element, IOHIDValueRef * pValue,
490 @param pValue Pointer to a Boolean to return whether or not the element was found in the queue.
494 IOReturn (*containsElement)(void * self, IOHIDElementRef element, Boolean * pValue, IOOptionBits options);
528 @param pValue Pointer to a IOHIDValueRef to return the value at the head of the queue.
533 IOReturn (*copyNextValue)(void * self, IOHIDValueRef * pValue, uint32_t timeout, IOOptionBits options);
598 @param pValue Pointer to a Boolean to return whether or not the element was found in the transaction.
602 IOReturn (*containsElement)(void * self, IOHIDElementRef element, Boolean * pValue, IOOptionBits options);
621 @param pValue Pointe
[all...]
H A DIOHIDDevice.h448 @param pValue Pointer to IOHIDValueRef to be obtained.
455 IOHIDValueRef * pValue)
487 @param pValue Pointer to IOHIDValueRef to be passedback.
498 IOHIDValueRef * pValue,
H A DIOHIDDevice.c1195 IOHIDValueRef * pValue)
1200 pValue,
1229 IOHIDValueRef * pValue,
1249 pValue,
1192 IOHIDDeviceGetValue( IOHIDDeviceRef device, IOHIDElementRef element, IOHIDValueRef * pValue) argument
1226 IOHIDDeviceGetValueWithCallback( IOHIDDeviceRef device, IOHIDElementRef element, IOHIDValueRef * pValue, CFTimeInterval timeout, IOHIDValueCallback callback, void * context) argument
/macosx-10.10/ICU-531.30/icuSources/tools/toolutil/
H A Ducmstate.c206 char *line, char **pKey, char **pValue) {
253 *pValue=s;
256 *pValue=s+1;
257 if(end>*pValue && *(end-1)=='"') {
264 if(uprv_strcmp(*pValue, "DBCS")==0) {
266 } else if(uprv_strcmp(*pValue, "SBCS")==0) {
268 } else if(uprv_strcmp(*pValue, "MBCS")==0) {
270 } else if(uprv_strcmp(*pValue, "EBCDIC_STATEFUL")==0) {
273 fprintf(stderr, "ucm error: unknown <uconv_class> %s\n", *pValue);
278 c=**pValue;
205 ucm_parseHeaderLine(UCMFile *ucm, char *line, char **pKey, char **pValue) argument
[all...]
H A Ducm.h127 char *line, char **pKey, char **pValue);
/macosx-10.10/OpenSSH-189/openssh/
H A Dssh-pkcs11.c244 key_filter[0].pValue = &private_key_class;
245 key_filter[2].pValue = &true_val;
276 key_filter[1].pValue = k11->keyid;
318 memcpy(k11->keyid, keyid_attrib->pValue, k11->keyid_len);
412 pubkey_filter[0].pValue = &pubkey_class;
424 attribs[i].pValue = NULL;
444 attribs[i].pValue = xmalloc(attribs[i].ulValueLen);
452 rsa->n = BN_bin2bn(attribs[1].pValue,
454 rsa->e = BN_bin2bn(attribs[2].pValue,
473 xfree(attribs[i].pValue);
[all...]
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDLib/
H A DIOHIDQueueClass.h71 static IOReturn _hasElement (void * self, IOHIDElementRef element, Boolean *pValue, IOOptionBits options);
94 virtual IOReturn hasElement (IOHIDElementRef element, Boolean * pValue, IOOptionBits options = 0);
148 Boolean * pValue,
H A DIOHIDTransactionClass.h67 static IOReturn _hasElement (void * self, IOHIDElementRef element, Boolean * pValue, IOOptionBits options);
92 virtual IOReturn hasElement (IOHIDElementRef element, Boolean * pValue, IOOptionBits options=0);
146 Boolean * pValue,
H A DIOHIDQueueClass.cpp421 IOReturn IOHIDQueueClass::hasElement (IOHIDElementRef element, Boolean * pValue, IOOptionBits options __unused) argument
423 if (!element || !pValue)
437 *pValue = returnHasElement;
616 IOReturn IOHIDQueueClass::_hasElement (void * self, IOHIDElementRef element, Boolean * pValue, IOOptionBits options) argument
617 { return getThis(self)->hasElement(element, pValue, options); }
783 Boolean * pValue,
786 return IOHIDQueueClass::hasElement(element, pValue, options);
782 hasElement(IOHIDElementRef element, Boolean * pValue, IOOptionBits options) argument
H A DIOHIDTransactionClass.cpp292 IOReturn IOHIDTransactionClass::hasElement (IOHIDElementRef element, Boolean *pValue, IOOptionBits options __unused) argument
296 if (!element || !pValue)
302 *pValue = CFDictionaryContainsKey(fElementDictionaryRef, element);
500 IOReturn IOHIDTransactionClass::_hasElement (void * self, IOHIDElementRef element, Boolean *pValue, IOOptionBits options) argument
501 { return getThis(self)->hasElement(element, pValue, options); }
676 Boolean * pValue,
679 return IOHIDTransactionClass::hasElement(element, pValue, options);
675 hasElement(IOHIDElementRef element, Boolean * pValue, IOOptionBits options) argument
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dkern_newsysctl.c346 * the data in (*pValue etc.).
350 sysctl_io_number(struct sysctl_req *req, long long bigValue, size_t valueSize, void *pValue, int *changed) { argument
380 if (pValue == NULL)
388 *(long long *)pValue = (long long)smallValue;
396 *(int *)pValue = smallValue;
400 error = SYSCTL_IN(req, pValue, valueSize);
408 sysctl_io_string(struct sysctl_req *req, char *pValue, size_t valueSize, int trunc, int *changed) argument
414 if (trunc && req->oldptr && req->oldlen && (req->oldlen<strlen(pValue) + 1)) {
421 error = SYSCTL_OUT(req, pValue, req->oldlen-1);
428 error = SYSCTL_OUT(req, pValue, strle
452 sysctl_io_opaque(struct sysctl_req *req,void *pValue, size_t valueSize, int *changed) argument
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/
H A Ducnv_ct.c342 uint32_t pValue; local
408 pValueLength = ucnv_MBCSFromUChar32(myConverterData->myConverterArray[i], sourceChar, &pValue, useFallback);
418 tmpTargetBuffer[tmpTargetBufferLength++] = (uint8_t)(pValue >> (n * 8));
426 pValueLength = ucnv_MBCSFromUChar32(myConverterData->myConverterArray[currentState], sourceChar, &pValue, useFallback);
429 tmpTargetBuffer[tmpTargetBufferLength++] = (uint8_t)(pValue >> (n * 8));
H A Ducnv_ext.h381 UChar32 cp, uint32_t *pValue,
H A Ducnvmbcs.h535 * as one 32-bit value. The function returns the number of bytes in *pValue:
536 * 1..4 the number of bytes in *pValue
537 * 0 unassigned (*pValue undefined)
538 * -1 illegal (currently not used, *pValue undefined)
540 * *pValue will contain the resulting bytes with the last byte in bits 7..0,
546 UChar32 c, uint32_t *pValue,
H A Ducnv_ext.cpp804 * @return number of bytes in *pValue; negative number if fallback; 0 for no mapping
808 UChar32 cp, uint32_t *pValue,
830 *pValue=value;
836 *pValue=
807 ucnv_extSimpleMatchFromU(const int32_t *cx, UChar32 cp, uint32_t *pValue, UBool useFallback) argument
H A Ducnvmbcs.c4662 * as one 32-bit value. The function returns the number of bytes in *pValue:
4663 * 1..4 the number of bytes in *pValue
4664 * 0 unassigned (*pValue undefined)
4665 * -1 illegal (currently not used, *pValue undefined)
4667 * *pValue will contain the resulting bytes with the last byte in bits 7..0,
4673 UChar32 c, uint32_t *pValue,
4694 *pValue=value&0xff;
4795 *pValue=value;
4803 length=ucnv_extSimpleMatchFromU(cx, c, pValue, useFallback);
4672 ucnv_MBCSFromUChar32(UConverterSharedData *sharedData, UChar32 c, uint32_t *pValue, UBool useFallback) argument
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dsysctl.h274 int sysctl_io_number(struct sysctl_req *req, long long bigValue, size_t valueSize, void *pValue, int *changed);
275 int sysctl_io_string(struct sysctl_req *req, char *pValue, size_t valueSize, int trunc, int *changed);
276 int sysctl_io_opaque(struct sysctl_req *req, void *pValue, size_t valueSize, int *changed);
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dcollationdatabuilder.cpp1175 int32_t *pValue = (int32_t *)context; local
1181 *pValue = Collation::LEAD_MIXED;
1184 if(*pValue < 0) {
1185 *pValue = (int32_t)value;
1186 } else if(*pValue != (int32_t)value) {
1187 *pValue = Collation::LEAD_MIXED;
/macosx-10.10/bind9-45.101/bind9/bin/pkcs11/include/
H A Dpkcs11t.h608 CK_VOID_PTR pValue; member in struct:CK_ATTRIBUTE
1803 CK_VOID_PTR pValue; member in struct:CK_OTP_PARAM
/macosx-10.10/Heimdal-398.1.2/lib/hx509/ref/
H A Dpkcs11.h151 #define value pValue

Completed in 443 milliseconds

12