Searched defs:from (Results 226 - 250 of 578) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/src/l2_packet/
H A Dl2_packet_privsep.c99 struct sockaddr_un from; local
100 socklen_t fromlen = sizeof(from);
102 os_memset(&from, 0, sizeof(from));
103 res = recvfrom(sock, buf, sizeof(buf), 0, (struct sockaddr *) &from,
115 if (from.sun_family != AF_UNIX ||
116 os_strncmp(from.sun_path, l2->priv_addr.sun_path,
117 sizeof(from.sun_path)) != 0) {
118 wpa_printf(MSG_DEBUG, "L2: Received message from unexpected "
/external/wpa_supplicant_8/src/radius/
H A Dradius_das.c68 "Disconnect-Request from %s:%d", attr,
79 wpa_printf(MSG_INFO, "DAS: Invalid NAS-IP-Address from %s:%d",
91 wpa_printf(MSG_INFO, "DAS: Invalid NAS-IPv6-Address from %s:%d",
114 "'%s' from %s:%d", tmp, abuf, from_port);
148 wpa_printf(MSG_INFO, "DAS: NAS mismatch from %s:%d",
153 wpa_printf(MSG_INFO, "DAS: Session not found for request from "
159 "DAS: Multiple sessions match for request from %s:%d",
196 } from; local
208 fromlen = sizeof(from);
210 (struct sockaddr *) &from
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dctrl_iface_udp.c29 * ctrl_iface_udp.c and should not be touched directly from other files.
59 struct sockaddr_in6 *from,
61 struct sockaddr_in *from,
73 os_memcpy(&dst->addr, from, sizeof(*from));
80 inet_ntop(AF_INET6, &from->sin6_addr, addr, sizeof(*from)),
81 ntohs(from->sin6_port));
84 inet_ntoa(from->sin_addr), ntohs(from
57 wpa_supplicant_ctrl_iface_attach(struct ctrl_iface_priv *priv, struct sockaddr_in6 *from, socklen_t fromlen) argument
90 wpa_supplicant_ctrl_iface_detach(struct ctrl_iface_priv *priv, struct sockaddr_in6 *from, socklen_t fromlen) argument
134 wpa_supplicant_ctrl_iface_level(struct ctrl_iface_priv *priv, struct sockaddr_in6 *from, socklen_t fromlen, char *level) argument
205 struct sockaddr_in6 from; local
210 struct sockaddr_in from; local
549 struct sockaddr_in from; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/l2_packet/
H A Dl2_packet_privsep.c99 struct sockaddr_un from; local
100 socklen_t fromlen = sizeof(from);
102 os_memset(&from, 0, sizeof(from));
103 res = recvfrom(sock, buf, sizeof(buf), 0, (struct sockaddr *) &from,
115 if (from.sun_family != AF_UNIX ||
116 os_strncmp(from.sun_path, l2->priv_addr.sun_path,
117 sizeof(from.sun_path)) != 0) {
118 wpa_printf(MSG_DEBUG, "L2: Received message from unexpected "
/external/wpa_supplicant_8/wpa_supplicant/src/radius/
H A Dradius_das.c68 "Disconnect-Request from %s:%d", attr,
79 wpa_printf(MSG_INFO, "DAS: Invalid NAS-IP-Address from %s:%d",
91 wpa_printf(MSG_INFO, "DAS: Invalid NAS-IPv6-Address from %s:%d",
114 "'%s' from %s:%d", tmp, abuf, from_port);
148 wpa_printf(MSG_INFO, "DAS: NAS mismatch from %s:%d",
153 wpa_printf(MSG_INFO, "DAS: Session not found for request from "
159 "DAS: Multiple sessions match for request from %s:%d",
196 } from; local
208 fromlen = sizeof(from);
210 (struct sockaddr *) &from
[all...]
/external/zlib/src/contrib/infback9/
H A Dinfback9.c124 then return a Z_BUF_ERROR from inflateBack(). */
137 /* Get a byte of input into the bit accumulator, or return from inflateBack()
148 not enough available input to do that, then return from inflateBack() with
160 /* Remove n bits from the bit accumulator */
175 if it's full. If the write fails, return from inflateBack() with a
237 unsigned long offset; /* distance back to copy string from */
239 unsigned char FAR *from; /* where to copy match bytes from */ local
326 /* copy stored block from input to output */
560 /* copy match from windo
[all...]
/external/zlib/src/examples/
H A Dgun.c16 Copy file attributes from input file to output file
28 gun will decompress from stdin to stdout. The names must end in .gz, -gz,
169 aspect of the compressed data format derived from an implementation that
191 /* Decompress a compress (LZW) file from indp to outfile. The compress magic
206 unsigned rem; /* unused bits from input */
299 rem = (unsigned)last >> (8 - left); /* unused bits from last byte */
371 /* Decompress a gzip file from infile to outfile. strm is assumed to have been
513 /* Copy file attributes, from -> to, as best we can. This is best effort, so
517 local void copymeta(char *from, char *to) argument
522 /* get all of from'
[all...]
H A Dgzappend.c8 arising from the use of this software.
20 3. This notice may not be removed or altered from any source distribution.
47 gzappend takes a gzip file and appends to it, compressing files from the
48 command line or data from stdin. The gzip file is written to directly, to
53 zlib 1.2.x's inflate() function. This option returns from inflate() at each
71 data from the gzip file to initialize the dictionary. If the total
74 last bits from the original deflate stream. From here on, the data to
127 unsigned char *start, *last, *to, *from; local
156 start = from = list + cycles; /* start index is arbitrary */
157 tmp = *from; /* sav
[all...]
/external/zlib/src/
H A Dinflate.c18 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
19 * - Remove unnecessary second byte pull from length extra in inffast.c
43 * - Move a comment on output buffer sizes from inffast.c to inflate.c
65 * - Changed loops from while (1) or do {} while (1) to for (;;), again to
153 /* extract wrap request from windowBits parameter */
253 fixed code decoding. Normally this returns fixed tables from inffixed.h.
375 upon return from inflate(), and since all distances after the first 32K of
469 /* Restore state from registers in inflate() */
487 /* Get a byte of input into the bit accumulator, or return from inflate()
498 not enough available input to do that, then return from inflat
617 unsigned char FAR *from; /* where to copy match bytes from */ local
[all...]
/external/bison/src/
H A Dgetargs.c97 * If VALUE == 0 then KEY clears all flags from \c all and no-KEY sets all
98 * flags from \c all. Thus no-none = all and no-all = none.
491 Should be computed from long_options. */
758 tr (char *s, char from, char to) argument
761 if (*s == from)
/external/boringssl/src/crypto/conf/
H A Dconf.c34 * The word 'cryptographic' can be left out if the rouines from the library
36 * 4. If you include any Windows specific code (or a derivative thereof) from
187 static int str_copy(CONF *conf, char *section, char **pto, char *from) { argument
198 len = strlen(from) + 1;
204 if (IS_QUOTE(conf, *from)) {
205 q = *from;
206 from++;
207 while (!IS_EOF(conf, *from) && (*from != q)) {
208 if (IS_ESC(conf, *from)) {
[all...]
/external/boringssl/src/crypto/evp/
H A Devp.c34 * The word 'cryptographic' can be left out if the rouines from the library
36 * 4. If you include any Windows specific code (or a derivative thereof) from
160 int EVP_PKEY_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from) { argument
161 if (to->type != from->type) {
166 if (EVP_PKEY_missing_parameters(from)) {
171 if (from->ameth && from->ameth->param_copy) {
172 return from->ameth->param_copy(to, from);
H A Dp_dsa_asn1.c25 * endorse or promote products derived from this software without
29 * 5. Products derived from this software may not be called "OpenSSL"
357 static int dsa_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from) { argument
358 if (!dup_bn_into(&to->pkey.dsa->p, from->pkey.dsa->p) ||
359 !dup_bn_into(&to->pkey.dsa->q, from->pkey.dsa->q) ||
360 !dup_bn_into(&to->pkey.dsa->g, from->pkey.dsa->g)) {
H A Dp_ec_asn1.c25 * endorse or promote products derived from this software without
29 * 5. Products derived from this software may not be called "OpenSSL"
362 static int ec_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from) { argument
363 EC_GROUP *group = EC_GROUP_dup(EC_KEY_get0_group(from->pkey.ec));
/external/boringssl/src/crypto/rsa/
H A Dpadding.c25 * endorse or promote products derived from this software without
29 * 5. Products derived from this software may not be called "OpenSSL"
72 const uint8_t *from, unsigned flen) {
98 memcpy(p, from, (unsigned int)flen);
103 const uint8_t *from, unsigned flen) {
113 p = from;
161 const uint8_t *from, unsigned flen) {
200 memcpy(p, from, (unsigned int)flen);
226 int RSA_message_index_PKCS1_type_2(const uint8_t *from, size_t from_len, argument
235 /* |from| i
71 RSA_padding_add_PKCS1_type_1(uint8_t *to, unsigned tlen, const uint8_t *from, unsigned flen) argument
102 RSA_padding_check_PKCS1_type_1(uint8_t *to, unsigned tlen, const uint8_t *from, unsigned flen) argument
160 RSA_padding_add_PKCS1_type_2(uint8_t *to, unsigned tlen, const uint8_t *from, unsigned flen) argument
269 RSA_padding_check_PKCS1_type_2(uint8_t *to, unsigned tlen, const uint8_t *from, unsigned flen) argument
301 RSA_padding_add_none(uint8_t *to, unsigned tlen, const uint8_t *from, unsigned flen) argument
318 RSA_padding_check_none(uint8_t *to, unsigned tlen, const uint8_t *from, unsigned flen) argument
372 RSA_padding_add_PKCS1_OAEP_mgf1(uint8_t *to, unsigned tlen, const uint8_t *from, unsigned flen, const uint8_t *param, unsigned plen, const EVP_MD *md, const EVP_MD *mgf1md) argument
450 RSA_padding_check_PKCS1_OAEP_mgf1(uint8_t *to, unsigned tlen, const uint8_t *from, unsigned flen, const uint8_t *param, unsigned plen, const EVP_MD *md, const EVP_MD *mgf1md) argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp27 /// A Range represents the closed range [from, to]. The caller must
28 /// guarantee that from <= to. Note that Range is immutable, so as not
34 Range(const llvm::APSInt &from, const llvm::APSInt &to) argument
35 : std::pair<const llvm::APSInt*, const llvm::APSInt*>(&from, &to) {
36 assert(from <= to);
89 /// Construct a new RangeSet representing '{ [from, to] }'.
90 RangeSet(Factory &F, const llvm::APSInt &from, const llvm::APSInt &to) argument
91 : ranges(F.add(F.getEmptySet(), Range(from, to))) {}
/external/deqp/modules/gles31/functional/
H A Des31fUniformLocationTests.cpp157 // [from, to]
158 std::vector<int> shuffledRange (int from, int to, int seed) argument
160 const int count = to - from;
168 retval[ndx] = ndx + from;
1014 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "link", "Location specified independently from use");
/external/dhcpcd/
H A Ddhcpcd.h93 struct in6_addr from; member in struct:ra
/external/eigen/Eigen/src/Core/arch/AltiVec/
H A DComplex.h56 template<> EIGEN_STRONG_INLINE Packet2cf pset1<Packet2cf>(const std::complex<float>& from) argument
60 if((ptrdiff_t(&from) % 16) == 0)
61 res.v = pload<Packet4f>((const float *)&from);
63 res.v = ploadu<Packet4f>((const float *)&from);
97 template<> EIGEN_STRONG_INLINE Packet2cf pload <Packet2cf>(const std::complex<float>* from) { EIGEN_DEBUG_ALIGNED_LOAD return Packet2cf(pload<Packet4f>((const float*)from)); } argument
98 template<> EIGEN_STRONG_INLINE Packet2cf ploadu<Packet2cf>(const std::complex<float>* from) { EIGEN_DEBUG_UNALIGNED_LOAD return Packet2cf(ploadu<Packet4f>((const float*)from)); } argument
100 template<> EIGEN_STRONG_INLINE Packet2cf ploaddup<Packet2cf>(const std::complex<float>* from) argument
102 return pset1<Packet2cf>(*from);
105 pstore(std::complex<float> * to, const Packet2cf& from) argument
106 pstoreu(std::complex<float> * to, const Packet2cf& from) argument
[all...]
/external/eigen/Eigen/src/Core/arch/NEON/
H A DComplex.h51 template<> EIGEN_STRONG_INLINE Packet2cf pset1<Packet2cf>(const std::complex<float>& from) argument
54 r64 = vld1_f32((float *)&from);
105 template<> EIGEN_STRONG_INLINE Packet2cf pload<Packet2cf>(const std::complex<float>* from) { EIGEN_DEBUG_ALIGNED_LOAD return Packet2cf(pload<Packet4f>((const float*)from)); } argument
106 template<> EIGEN_STRONG_INLINE Packet2cf ploadu<Packet2cf>(const std::complex<float>* from) { EIGEN_DEBUG_UNALIGNED_LOAD return Packet2cf(ploadu<Packet4f>((const float*)from)); } argument
108 template<> EIGEN_STRONG_INLINE Packet2cf ploaddup<Packet2cf>(const std::complex<float>* from) { return pset1<Packet2cf>(*from); } argument
110 template<> EIGEN_STRONG_INLINE void pstore <std::complex<float> >(std::complex<float> * to, const Packet2cf& from) { EIGEN_DEBUG_ALIGNED_STORE pstore((float*)to, from argument
111 pstoreu(std::complex<float> * to, const Packet2cf& from) argument
[all...]
/external/eigen/Eigen/src/Core/arch/SSE/
H A DPacketMath.h109 template<> EIGEN_STRONG_INLINE Packet4f pset1<Packet4f>(const float& from) { return _mm_set_ps(from,from,from,from); } argument
110 template<> EIGEN_STRONG_INLINE Packet2d pset1<Packet2d>(const double& from) { return _mm_set_pd(from,from); } argument
111 template<> EIGEN_STRONG_INLINE Packet4i pset1<Packet4i>(const int& from) { return _mm_set_epi32(from,fro argument
113 pset1(const float& from) argument
114 pset1(const double& from) argument
115 pset1(const int& from) argument
219 pload(const float* from) argument
228 pload(const double* from) argument
237 pload(const int* from) argument
248 ploadu(const float* from) argument
262 ploadu(const double* from) argument
263 ploadu(const int* from) argument
282 ploadu(const float* from) argument
299 ploadu(const double* from) argument
316 ploadu(const int* from) argument
335 ploaddup(const float* from) argument
339 ploaddup(const double* from) argument
341 ploaddup(const int* from) argument
348 pstore(float* to, const Packet4f& from) argument
357 pstore(double* to, const Packet2d& from) argument
366 pstore(int* to, const Packet4i& from) argument
370 _mm_storeu_si128(reinterpret_cast<Packet4i*>(to), from); local
376 pstoreu(double* to, const Packet2d& from) argument
381 pstoreu(float* to, const Packet4f& from) argument
382 pstoreu(int* to, const Packet4i& from) argument
[all...]
/external/elfutils/src/libdwfl/
H A Dlinux-kernel-modules.c694 name comes from the name embedded in the object's magic
703 inline bool subst_name (char from, char to) argument
705 const char *n = memchr (module_name, from, namelen);
712 while ((p = memchr (n, from, namelen - (n - module_name))) != NULL)
784 We read the information from /sys/module directly. */
812 actually absent from memory. */
904 from other whitespace so as to take the optional word following the
/external/elfutils/src/src/
H A Dfindtextrel.c44 GElf_Addr from; member in struct:segments
365 segments[nsegments].from = phdr->p_vaddr;
510 if (segments[cnt].from <= addr && segments[cnt].to > addr)
H A Dstrings.c169 /* We read from standard input. This we cannot do for a
514 read_block_no_mmap (int fd, const char *fname, off64_t from, off64_t fdlen) argument
551 process_chunk (fname, buf, from + nb, nb, &unprinted);
559 from += nb;
576 read_block (int fd, const char *fname, off64_t fdlen, off64_t from, off64_t to) argument
581 elfmap_off = from & ~(ps - 1);
591 /* Read from the file descriptor. For this we must position the
595 if (from != 0 && lseek64 (fd, from, SEEK_SET) != from)
[all...]
/external/guava/guava/src/com/google/common/cache/
H A DCacheBuilder.java80 * // In real life this would come from a command-line flag or config file
83 * LoadingCache<Key, Graph> graphs = CacheBuilder.from(spec)
106 * <p>Entries are automatically evicted from the cache when any of
125 * removed from the cache on each cache modification, on occasional cache accesses, or on calls to
259 public static CacheBuilder<Object, Object> from(CacheBuilderSpec spec) { method in class:CacheBuilder
273 public static CacheBuilder<Object, Object> from(String spec) { method in class:CacheBuilder
274 return from(CacheBuilderSpec.parse(spec));
460 * the cache, but only the "generic" one is type-safe. That is, it will properly prevent you from
588 * Specifies that each entry should be automatically removed from the cache once a fixed duration
619 * Specifies that each entry should be automatically removed from th
[all...]

Completed in 447 milliseconds

1234567891011>>