Home
last modified time | relevance | path

Searched refs:okey (Results 1 – 15 of 15) sorted by relevance

/external/libxml2/
Ddict.c99 unsigned long okey; member
661 unsigned long key, okey; in xmlDictGrow() local
708 okey = olddict[i].okey; in xmlDictGrow()
710 okey = xmlDictComputeKey(dict, olddict[i].name, olddict[i].len); in xmlDictGrow()
711 key = okey % dict->size; in xmlDictGrow()
716 dict->dict[key].okey = okey; in xmlDictGrow()
724 entry->okey = okey; in xmlDictGrow()
751 okey = iter->okey; in xmlDictGrow()
753 okey = xmlDictComputeKey(dict, iter->name, iter->len); in xmlDictGrow()
754 key = okey % dict->size; in xmlDictGrow()
[all …]
/external/libnl/lib/route/link/
Dipvti.c44 uint32_t okey; member
101 ipvti->okey = nla_get_u32(tb[IFLA_VTI_OKEY]); in ipvti_parse()
137 NLA_PUT_U32(msg, IFLA_VTI_OKEY, ipvti->okey); in ipvti_put_attrs()
186 nl_dump_line(p, "%x\n", ipvti->okey); in ipvti_dump_details()
374 int rtnl_link_ipvti_set_okey(struct rtnl_link *link, uint32_t okey) in rtnl_link_ipvti_set_okey() argument
380 ipvti->okey = okey; in rtnl_link_ipvti_set_okey()
398 return ipvti->okey; in rtnl_link_ipvti_get_okey()
Dipgre.c53 uint32_t okey; member
126 ipgre->okey = nla_get_u32(tb[IFLA_GRE_OKEY]); in ipgre_parse()
183 NLA_PUT_U32(msg, IFLA_GRE_OKEY, ipgre->okey); in ipgre_put_attrs()
251 nl_dump_line(p, "%x\n", ipgre->okey); in ipgre_dump_details()
522 int rtnl_link_ipgre_set_okey(struct rtnl_link *link, uint32_t okey) in rtnl_link_ipgre_set_okey() argument
528 ipgre->okey = okey; in rtnl_link_ipgre_set_okey()
546 return ipgre->okey; in rtnl_link_ipgre_get_okey()
/external/python/cpython2/Modules/
Dgdbmmodule.c97 datum key,okey; in dbm_length() local
99 okey.dsize=0; in dbm_length()
100 okey.dptr=NULL; in dbm_length()
104 key = gdbm_nextkey(dp->di_dbm,okey)) { in dbm_length()
106 if(okey.dsize) free(okey.dptr); in dbm_length()
107 okey=key; in dbm_length()
/external/iproute2/ip/
Dlink_vti.c59 unsigned okey = 0; in vti_parse_opt() local
103 okey = *(__u32 *)RTA_DATA(vtiinfo[IFLA_VTI_OKEY]); in vti_parse_opt()
131 ikey = okey = uval; in vti_parse_opt()
159 okey = uval; in vti_parse_opt()
190 addattr32(n, 1024, IFLA_VTI_OKEY, okey); in vti_parse_opt()
Dlink_vti6.c57 unsigned okey = 0; in vti6_parse_opt() local
99 okey = rta_getattr_u32(vtiinfo[IFLA_VTI_OKEY]); in vti6_parse_opt()
127 ikey = okey = uval; in vti6_parse_opt()
155 okey = uval; in vti6_parse_opt()
187 addattr32(n, 1024, IFLA_VTI_OKEY, okey); in vti6_parse_opt()
Dlink_gre.c65 unsigned okey = 0; in gre_parse_opt() local
117 okey = rta_getattr_u32(greinfo[IFLA_GRE_OKEY]); in gre_parse_opt()
175 ikey = okey = uval; in gre_parse_opt()
205 okey = uval; in gre_parse_opt()
309 if (!okey && IN_MULTICAST(ntohl(daddr))) { in gre_parse_opt()
310 okey = daddr; in gre_parse_opt()
319 addattr32(n, 1024, IFLA_GRE_OKEY, okey); in gre_parse_opt()
Dlink_gre6.c75 unsigned okey = 0; in gre_parse_opt() local
123 okey = rta_getattr_u32(greinfo[IFLA_GRE_OKEY]); in gre_parse_opt()
171 ikey = okey = uval; in gre_parse_opt()
201 okey = uval; in gre_parse_opt()
283 addattr32(n, 1024, IFLA_GRE_OKEY, okey); in gre_parse_opt()
/external/pdfium/core/fpdfapi/parser/
Dcpdf_security_handler.cpp45 CFX_ByteString okey = pEncrypt->GetStringFor("O"); in CalcEncryptKey() local
46 CRYPT_MD5Update(&md5, (uint8_t*)okey.c_str(), okey.GetLength()); in CalcEncryptKey()
317 CFX_ByteString okey = m_pEncryptDict->GetStringFor("O"); in AES256_CheckPassword() local
318 if (okey.GetLength() < 48) in AES256_CheckPassword()
325 const uint8_t* pkey = bOwner ? okey.raw_str() : ukey.raw_str(); in AES256_CheckPassword()
463 CFX_ByteString okey = m_pEncryptDict->GetStringFor("O"); in GetUserPassword() local
482 int okeylen = okey.GetLength(); in GetUserPassword()
488 FXSYS_memcpy(okeybuf, okey.c_str(), okeylen); in GetUserPassword()
/external/python/cpython2/Objects/
Dabstract.c229 PyObject *okey; in PyObject_DelItemString() local
236 okey = PyString_FromString(key); in PyObject_DelItemString()
237 if (okey == NULL) in PyObject_DelItemString()
239 ret = PyObject_DelItem(o, okey); in PyObject_DelItemString()
240 Py_DECREF(okey); in PyObject_DelItemString()
2468 PyObject *okey, *r; local
2473 okey = PyString_FromString(key);
2474 if (okey == NULL)
2476 r = PyObject_GetItem(o, okey);
2477 Py_DECREF(okey);
[all …]
/external/libnl/include/netlink/route/link/
Dipvti.h30 extern int rtnl_link_ipvti_set_okey(struct rtnl_link *link, uint32_t okey);
Dipgre.h37 extern int rtnl_link_ipgre_set_okey(struct rtnl_link *link, uint32_t okey);
/external/python/cpython2/Lib/
Dxmllib.py638 okey = key
656 attrnamemap[key] = okey
/external/libnl/doc/
Droute.txt947 extern int rtnl_link_ipgre_set_okey(struct rtnl_link *link, uint32_t okey);
1025 extern int rtnl_link_sit_set_okey(struct rtnl_link *link, uint32_t okey);
1098 extern int rtnl_link_ipvti_set_okey(struct rtnl_link *link, uint32_t okey);
/external/iproute2/doc/
Dip-cref.tex2530 \item \verb|key K|, \verb|ikey K|, \verb|okey K|
2535 The \verb|ikey| and \verb|okey| parameters set different keys for input and output.