Home
last modified time | relevance | path

Searched refs:newm (Results 1 – 3 of 3) sorted by relevance

/external/iptables/iptables/
Dxtables-eb.c563 struct xtables_match *newm; in ebt_add_match() local
567 newm = xtables_find_match(m->name, XTF_LOAD_MUST_SUCCEED, rule_matches); in ebt_add_match()
568 if (newm == NULL) in ebt_add_match()
572 m2 = xtables_calloc(1, newm->m->u.match_size); in ebt_add_match()
573 memcpy(m2, newm->m, newm->m->u.match_size); in ebt_add_match()
574 memset(newm->m->data, 0, newm->size); in ebt_add_match()
575 xs_init_match(newm); in ebt_add_match()
576 newm->m = m2; in ebt_add_match()
578 newm->mflags = m->mflags; in ebt_add_match()
587 newnode->u.match = newm; in ebt_add_match()
/external/python/cpython2/Python/
Dimport.c2776 PyObject *newm; in PyImport_ReloadModule() local
2849 newm = load_module(name, fp, buf, fdp->type, loader); in PyImport_ReloadModule()
2854 if (newm == NULL) { in PyImport_ReloadModule()
2864 return newm; in PyImport_ReloadModule()
/external/usrsctp/usrsctplib/netinet/
Dsctp_output.c4143 struct mbuf *newm; local
4207 newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA);
4208 if (newm == NULL) {
4213 SCTP_ALIGN_TO_END(newm, len);
4214 SCTP_BUF_LEN(newm) = len;
4215 SCTP_BUF_NEXT(newm) = m;
4216 m = newm;
4595 newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA);
4596 if (newm == NULL) {
4601 SCTP_ALIGN_TO_END(newm, len);
[all …]