Searched refs:rtmp (Results 1 - 25 of 51) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/etc/atalkd/
H A Drtmp.c2 * $Id: rtmp.c,v 1.17 2009-12-08 03:21:16 didg Exp $
35 #include <atalk/rtmp.h>
39 #include "rtmp.h"
46 void rtmp_delzonemap(struct rtmptab *rtmp) argument
51 lz = rtmp->rt_zt;
56 if ( (struct rtmptab *)lr->l_data == rtmp ) {
92 rtmp->rt_zt = NULL;
159 * Delete rtmp from the per-interface in-use table, remove all
162 static void rtmp_delinuse(struct rtmptab *rtmp) argument
166 irt = rtmp
196 rtmp_addinuse( struct rtmptab *rtmp) argument
253 rtmp_free( struct rtmptab *rtmp) argument
294 struct rtmptab *rtmp, *found = NULL; local
334 rtmp_new(struct rtmptab *rtmp) argument
404 struct rtmptab *rtmp; local
915 gateroute(unsigned int command, struct rtmptab *rtmp) argument
989 struct rtmptab *rtmp; local
[all...]
H A Dzip.c43 #include "rtmp.h"
51 static int zonecheck(struct rtmptab *rtmp, struct interface *iface) argument
62 for ( l = rtmp->rt_zt; l; l = l->l_next ) {
76 for ( ztcnt = 0, l = rtmp->rt_zt; l; l = l->l_next, ztcnt++ )
95 struct rtmptab *rtmp = NULL; local
144 for ( rtmp = iface->i_rt; rtmp; rtmp = rtmp->rt_inext ) {
145 if ( firstnet == rtmp
[all...]
H A DMakefile.am7 atalkd_SOURCES = aep.c config.c main.c multicast.c nbp.c route.c rtmp.c zip.c
19 rtmp.h \
H A Dmain.c57 #include <atalk/rtmp.h>
72 #include "rtmp.h"
109 { "rtmp", 1, rtmp_packet }, /* 0 */
201 struct rtmptab *rtmp, *frtmp; local
340 rtmp = gate->g_rt;
341 while ( rtmp ) {
342 frtmp = rtmp->rt_next;
343 if ( rtmp->rt_hops == RTMPHOPS_POISON || rtmp->rt_iprev == NULL ) {
344 rtmp_free( rtmp );
674 struct rtmptab *rtmp; local
1487 struct rtmptab *rtmp; local
1535 struct rtmptab *rtmp; local
[all...]
H A Dnbp.c38 #include "rtmp.h"
77 struct rtmptab *rtmp; local
419 rtmp = (struct rtmptab *)l->l_data;
421 if ( rtmp->rt_gate == NULL ) {
424 if ( iface->i_rt == rtmp ) {
435 ap = rtmp->rt_gate->g_iface->i_ports;
448 ( rtmp->rt_flags & RTMPTAB_EXTENDED ) == 0 ) {
449 if ( rtmp->rt_gate == NULL ) {
454 sat.sat_addr.s_net = rtmp->rt_firstnet;
457 if ( rtmp
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-cns3xxx/include/mach/
H A Ddebug-macro.S13 .macro addruart,rx,rtmp
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-s3c64xx/include/mach/
H A Ddebug-macro.S24 .macro addruart, rx, rtmp
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-s5p6440/include/mach/
H A Ddebug-macro.S22 .macro addruart, rx, rtmp
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-s5pc100/include/mach/
H A Ddebug-macro.S25 .macro addruart, rx, rtmp
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-s5p6442/include/mach/
H A Ddebug-macro.S18 .macro addruart, rx, rtmp
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/engines/
H A De_4758cca.c401 RSA *rtmp = NULL; local
471 rtmp = RSA_new_method(e);
472 RSA_set_ex_data(rtmp, hndidx, (char *)keyToken);
474 rtmp->e = BN_bin2bn(exponent, exponentLength, NULL);
475 rtmp->n = BN_bin2bn(modulus, modulusFieldLength, NULL);
476 rtmp->flags |= RSA_FLAG_EXT_PKEY;
479 EVP_PKEY_assign_RSA(res, rtmp);
487 if (rtmp)
488 RSA_free(rtmp);
495 RSA *rtmp local
[all...]
H A De_chil.c764 RSA *rtmp = NULL; local
814 rtmp = RSA_new_method(eng);
815 RSA_set_ex_data(rtmp, hndidx_rsa, (char *)hptr);
816 rtmp->e = BN_new();
817 rtmp->n = BN_new();
818 rtmp->flags |= RSA_FLAG_EXT_PKEY;
819 MPI2BN(rtmp->e, e);
820 MPI2BN(rtmp->n, n);
829 bn_expand2(rtmp->e, e.size/sizeof(BN_ULONG));
830 bn_expand2(rtmp
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dlibrtmp.c33 #include <librtmp/rtmp.h>
38 RTMP rtmp; member in struct:LibRTMPContext
72 RTMP *r = &ctx->rtmp;
82 * URL syntax: rtmp://server[:port][/app][/playpath][ keyword=value]...
94 RTMP *r = &ctx->rtmp;
246 RTMP *r = &ctx->rtmp;
254 RTMP *r = &ctx->rtmp;
262 RTMP *r = &ctx->rtmp;
273 RTMP *r = &ctx->rtmp;
291 RTMP *r = &ctx->rtmp;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/engines/
H A De_4758cca.c400 RSA *rtmp = NULL; local
465 rtmp = RSA_new_method(e);
466 RSA_set_ex_data(rtmp, hndidx, (char *)keyToken);
468 rtmp->e = BN_bin2bn(exponent, exponentLength, NULL);
469 rtmp->n = BN_bin2bn(modulus, modulusFieldLength, NULL);
470 rtmp->flags |= RSA_FLAG_EXT_PKEY;
473 EVP_PKEY_assign_RSA(res, rtmp);
486 RSA *rtmp = NULL; local
537 rtmp = RSA_new_method(e);
538 RSA_set_ex_data(rtmp, hndid
[all...]
H A De_chil.c771 RSA *rtmp = NULL; local
812 rtmp = RSA_new_method(eng);
813 RSA_set_ex_data(rtmp, hndidx_rsa, (char *)hptr);
814 rtmp->e = BN_new();
815 rtmp->n = BN_new();
816 rtmp->flags |= RSA_FLAG_EXT_PKEY;
817 MPI2BN(rtmp->e, e);
818 MPI2BN(rtmp->n, n);
826 bn_expand2(rtmp->e, e.size / sizeof(BN_ULONG));
827 bn_expand2(rtmp
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/engines/
H A De_4758cca.c400 RSA *rtmp = NULL; local
465 rtmp = RSA_new_method(e);
466 RSA_set_ex_data(rtmp, hndidx, (char *)keyToken);
468 rtmp->e = BN_bin2bn(exponent, exponentLength, NULL);
469 rtmp->n = BN_bin2bn(modulus, modulusFieldLength, NULL);
470 rtmp->flags |= RSA_FLAG_EXT_PKEY;
473 EVP_PKEY_assign_RSA(res, rtmp);
486 RSA *rtmp = NULL; local
537 rtmp = RSA_new_method(e);
538 RSA_set_ex_data(rtmp, hndid
[all...]
H A De_chil.c771 RSA *rtmp = NULL; local
812 rtmp = RSA_new_method(eng);
813 RSA_set_ex_data(rtmp, hndidx_rsa, (char *)hptr);
814 rtmp->e = BN_new();
815 rtmp->n = BN_new();
816 rtmp->flags |= RSA_FLAG_EXT_PKEY;
817 MPI2BN(rtmp->e, e);
818 MPI2BN(rtmp->n, n);
826 bn_expand2(rtmp->e, e.size / sizeof(BN_ULONG));
827 bn_expand2(rtmp
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/pem/
H A Dpem_all.c165 RSA *rtmp; local
167 rtmp = EVP_PKEY_get1_RSA(key);
169 if(!rtmp) return NULL;
172 *rsa = rtmp;
174 return rtmp;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/include/atalk/
H A DMakefile.am7 nbp.h netddp.h pap.h paths.h queue.h rtmp.h server_child.h \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/pem/
H A Dpem_all.c157 RSA *rtmp; local
160 rtmp = EVP_PKEY_get1_RSA(key);
162 if (!rtmp)
166 *rsa = rtmp;
168 return rtmp;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/pem/
H A Dpem_all.c157 RSA *rtmp; local
160 rtmp = EVP_PKEY_get1_RSA(key);
162 if (!rtmp)
166 *rsa = rtmp;
168 return rtmp;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/infiniband/hw/ipath/
H A Dipath_init_chip.c343 u32 rtmp; local
369 rtmp = ipath_read_kreg32(dd, dd->ipath_kregs->kr_rcvtidcnt);
370 if (rtmp != dd->ipath_rcvtidcnt)
373 dd->ipath_rcvtidcnt, rtmp);
374 rtmp = ipath_read_kreg32(dd, dd->ipath_kregs->kr_rcvtidbase);
375 if (rtmp != dd->ipath_rcvtidbase)
378 dd->ipath_rcvtidbase, rtmp);
379 rtmp = ipath_read_kreg32(dd, dd->ipath_kregs->kr_rcvegrcnt);
380 if (rtmp != dd->ipath_rcvegrcnt)
383 dd->ipath_rcvegrcnt, rtmp);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/bzip2/
H A Dcompress.c190 register UChar rtmp; local
193 rtmp = yy[1];
197 while ( rll_i != rtmp ) {
200 rtmp2 = rtmp;
201 rtmp = *ryy_j;
204 yy[0] = rtmp;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/asn1/
H A Dx_crl.c434 X509_REVOKED rtmp, *rev;
436 rtmp.serialNumber = serial;
446 idx = sk_X509_REVOKED_find(crl->crl->revoked, &rtmp);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/asn1/
H A Dx_crl.c434 X509_REVOKED rtmp, *rev;
436 rtmp.serialNumber = serial;
446 idx = sk_X509_REVOKED_find(crl->crl->revoked, &rtmp);

Completed in 311 milliseconds

123