Searched defs:vp (Results 1 - 21 of 21) sorted by relevance

/external/ppp/pppd/plugins/radius/
H A Dradattr.c59 * vp -- linked-list of RADIUS attribute-value pairs
67 print_attributes(VALUE_PAIR *vp) argument
82 for (; vp; vp=vp->next) {
83 if (rc_avpair_tostr(vp, name, sizeof(name), value, sizeof(value)) < 0) {
H A Davpair.c22 VALUE_PAIR **vp);
37 VALUE_PAIR *vp; local
39 vp = rc_avpair_new (attrid, pval, len, vendorcode);
41 if (vp != (VALUE_PAIR *) NULL)
43 rc_avpair_insert (list, (VALUE_PAIR *) NULL, vp);
46 return vp;
60 int rc_avpair_assign (VALUE_PAIR *vp, void *pval, int len) argument
64 switch (vp->type)
75 memcpy(vp->strvalue, (char *)pval, len);
76 vp
112 VALUE_PAIR *vp = (VALUE_PAIR *) NULL; local
162 VALUE_PAIR *vp; local
261 rc_extract_vendor_specific_attributes(int attrlen, unsigned char *ptr, VALUE_PAIR **vp) argument
352 rc_avpair_get(VALUE_PAIR *vp, UINT4 attr) argument
369 VALUE_PAIR *vp, *fp = NULL, *lp = NULL; local
402 VALUE_PAIR *vp; local
775 VALUE_PAIR *vp = NULL; local
[all...]
H A Dsendserver.c33 static int rc_pack_list (VALUE_PAIR *vp, char *secret, AUTH_HDR *auth) argument
44 while (vp != (VALUE_PAIR *) NULL)
47 if (vp->vendorcode != VENDOR_NONE) {
55 *buf++ = (((unsigned int) vp->vendorcode) >> 16) & 255;
56 *buf++ = (((unsigned int) vp->vendorcode) >> 8) & 255;
57 *buf++ = ((unsigned int) vp->vendorcode) & 255;
60 *buf++ = vp->attribute;
63 switch(vp->type) {
65 length = vp->lvalue;
68 memcpy(buf, vp
214 VALUE_PAIR *vp; local
[all...]
H A Dradius.c84 static int radius_setparams(VALUE_PAIR *vp, char *msg, REQUEST_INFO *req_info,
94 static int radius_setmppekeys(VALUE_PAIR *vp, REQUEST_INFO *req_info,
96 static int radius_setmppekeys2(VALUE_PAIR *vp, REQUEST_INFO *req_info);
124 VALUE_PAIR *avp; /* Additional (user supplied) vp's to send to server */
187 /* Append to a list of vp's for later parsing */
290 /* Add user specified vp's */
466 /* Add user specified vp's */
534 * vp -- received value-pairs
542 radius_setparams(VALUE_PAIR *vp, char *msg, REQUEST_INFO *req_info, argument
556 (*radius_attributes_hook)(vp);
729 radius_setmppekeys(VALUE_PAIR *vp, REQUEST_INFO *req_info, unsigned char *challenge) argument
783 radius_setmppekeys2(VALUE_PAIR *vp, REQUEST_INFO *req_info) argument
[all...]
/external/stlport/stlport/stl/
H A D_hash_fun.h134 __vp vp; local
135 vp.p = __x;
136 return vp.s;
/external/chromium/net/third_party/nss/ssl/
H A Dssltrace.c69 void ssl_PrintBuf(sslSocket *ss, const char *msg, const void *vp, int len) argument
71 const unsigned char *cp = (const unsigned char *)vp;
/external/ipsec-tools/src/racoon/
H A Disakmp_quick.c427 vchar_t *vp;
433 vp = iph2->id;
436 vp = iph2->id_p;
440 if (memcmp(vp->v, (caddr_t)pa->ptr + sizeof(struct isakmp_gen), vp->l)) {
426 vchar_t *vp; local
/external/openssl/crypto/bn/
H A Dbn_asm.c853 volatile BN_ULONG *vp; local
859 vp = tp = alloca((num+2)*sizeof(BN_ULONG));
926 for(i=0;i<num+2;i++) vp[i] = 0;
930 for(i=0;i<num;i++) rp[i] = tp[i], vp[i] = 0;
931 vp[num] = 0;
932 vp[num+1] = 0;
989 volatile BN_ULONG *vp; local
992 vp = tp = alloca((num+2)*sizeof(BN_ULONG));
1015 for(i=0;i<num+2;i++) vp[i] = 0;
1019 for(i=0;i<num;i++) rp[i] = tp[i], vp[
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/svga/
H A DSDL_svgavideo.c494 int page, vp; local
509 vp = y * pitch + x * bpp;
510 src = (unsigned char *)this->screen->pixels + vp;
511 page = vp >> 16;
512 vp &= 0xffff;
515 if (vp + w > 0x10000) {
516 if (vp >= 0x10000) {
519 vp &= 0xffff;
521 SDL_memcpy(dst + vp, src, 0x10000 - vp);
[all...]
/external/skia/src/xml/
H A DSkJSDisplayable.cpp71 static JSBool GetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp);
72 static JSBool SetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp);
227 jsval *vp)
278 *vp = BOOLEAN_TO_JSVAL(s32);
282 *vp = INT_TO_JSVAL(s32);
286 *vp = INT_TO_JSVAL(SkScalarFloor(scalar));
289 *vp = DOUBLE_TO_JSVAL(scalar);
291 *vp = DOUBLE_TO_JSVAL(scalar / 65536.0f );
296 *vp = STRING_TO_JSVAL(str);
304 JSBool SkJSDisplayable::SetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp) { argument
226 GetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp) argument
[all...]
/external/kernel-headers/original/linux/sunrpc/
H A Dsvc.h83 u32 val, *vp; local
84 vp = iov->iov_base;
85 val = *vp++;
86 iov->iov_base = (void*)vp;
93 u32 *vp = (u32 *)iov->iov_base; local
94 iov->iov_base = (void *)(vp - 1);
95 iov->iov_len += sizeof(*vp);
100 u32 *vp = iov->iov_base + iov->iov_len; local
101 *vp = val;
/external/wpa_supplicant/
H A Ddriver_bsd.c619 uint8_t *cp, *vp; local
641 vp = (u_int8_t *)(sr+1);
642 os_memcpy(wsr->ssid, vp, sr->isr_ssid_len);
644 vp += sr->isr_ssid_len;
647 switch (vp[0]) {
649 if (!iswpaoui(vp))
652 min(2+vp[1], SSID_MAX_WPA_IE_LEN);
653 os_memcpy(wsr->wpa_ie, vp,
658 min(2+vp[1], SSID_MAX_WPA_IE_LEN);
659 os_memcpy(wsr->rsn_ie, vp,
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/drivers/
H A Ddriver_bsd.c622 uint8_t *cp, *vp; local
644 vp = (u_int8_t *)(sr+1);
645 os_memcpy(wsr->ssid, vp, sr->isr_ssid_len);
647 vp += sr->isr_ssid_len;
650 switch (vp[0]) {
652 if (!iswpaoui(vp))
655 min(2+vp[1], SSID_MAX_WPA_IE_LEN);
656 os_memcpy(wsr->wpa_ie, vp,
661 min(2+vp[1], SSID_MAX_WPA_IE_LEN);
662 os_memcpy(wsr->rsn_ie, vp,
[all...]
/external/dbus/dbus/
H A Ddbus-marshal-basic.c390 const DBusBasicValue *vp; local
392 vp = value;
397 _dbus_string_set_byte (str, pos, vp->byt);
407 set_2_octets (str, pos, vp->u16, byte_order);
418 set_4_octets (str, pos, vp->u32, byte_order);
429 set_8_octets (str, pos, *vp, byte_order);
439 _dbus_assert (vp->str != NULL);
440 return set_string (str, pos, vp->str, byte_order,
444 _dbus_assert (vp->str != NULL);
445 return set_signature (str, pos, vp
511 DBusBasicValue *vp; local
800 const DBusBasicValue *vp; local
1030 const void* vp = *(const DBusBasicValue**)value; local
[all...]
/external/quake/quake/src/QW/client/
H A Dgl_warp.c726 float *vp; local
741 for (i=0, vp=vecs ; i<nump ; i++, vp+=3)
743 VectorAdd (vp, v, v);
/external/quake/quake/src/WinQuake/
H A Dgl_warp.cpp775 float *vp; local
790 for (i=0, vp=vecs ; i<nump ; i++, vp+=3)
792 VectorAdd (vp, v, v);
/external/blktrace/btreplay/
H A Dbtreplay.c387 * @vp: Pointer to the variable being incremented
391 volatile int *vp,
395 assert(*vp < mxv);
396 *vp += 1;
405 * @vp: Pointer to the variable being incremented
409 volatile int *vp, int mxv)
412 while (*vp < mxv)
414 *vp = 0;
390 __set_cv(pthread_mutex_t *pmp, pthread_cond_t *pcp, volatile int *vp, __attribute__((__unused__))int mxv) argument
408 __wait_cv(pthread_mutex_t *pmp, pthread_cond_t *pcp, volatile int *vp, int mxv) argument
/external/libpng/
H A Dpngrutil.c1807 png_charp vp; local
1864 width = png_strtod(png_ptr, ep, &vp);
1865 if (*vp)
1902 height = png_strtod(png_ptr, ep, &vp);
1903 if (*vp)
/external/ppp/pppd/
H A Dtdb.c1684 unsigned char *vp; local
1763 vp = (unsigned char *)&tdb->header.version;
1764 vertest = (((u32)vp[0]) << 24) | (((u32)vp[1]) << 16) |
1765 (((u32)vp[2]) << 8) | (u32)vp[3];
/external/qemu/distrib/libpng-1.2.19/
H A Dpngrutil.c1705 png_charp vp; local
1752 width = png_strtod(png_ptr, ep, &vp);
1753 if (*vp)
1775 height = png_strtod(png_ptr, ep, &vp);
1776 if (*vp)
/external/e2fsprogs/lib/ext2fs/
H A Dtdb.c3818 unsigned char *vp; local
3909 vp = (unsigned char *)&tdb->header.version;
3910 vertest = (((u32)vp[0]) << 24) | (((u32)vp[1]) << 16) |
3911 (((u32)vp[2]) << 8) | (u32)vp[3];

Completed in 347 milliseconds