HomeSort by relevance Sort by last modified time
    Searched full:optinfo (Results 1 - 4 of 4) sorted by null

  /external/iptables/extensions/
libip6t_hbh.c 104 struct ip6t_opts *optinfo = cb->data; local
110 optinfo->invflags |= IP6T_OPTS_INV_LEN;
111 optinfo->flags |= IP6T_OPTS_LEN;
114 optinfo->optsnr = parse_options(cb->arg, optinfo->opts);
115 optinfo->flags |= IP6T_OPTS_OPTS;
137 const struct ip6t_opts *optinfo = (struct ip6t_opts *)match->data; local
140 if (optinfo->flags & IP6T_OPTS_LEN) {
142 printf(":%s", optinfo->invflags & IP6T_OPTS_INV_LEN ? "!" : "");
143 printf("%u", optinfo->hdrlen)
154 const struct ip6t_opts *optinfo = (struct ip6t_opts *)match->data; local
    [all...]
libip6t_dst.c 110 struct ip6t_opts *optinfo = cb->data; local
115 optinfo->flags |= IP6T_OPTS_LEN;
118 optinfo->optsnr = parse_options(cb->arg, optinfo->opts);
119 optinfo->flags |= IP6T_OPTS_OPTS;
143 const struct ip6t_opts *optinfo = (struct ip6t_opts *)match->data; local
146 if (optinfo->flags & IP6T_OPTS_LEN)
148 optinfo->invflags & IP6T_OPTS_INV_LEN ? "!" : "",
149 optinfo->hdrlen);
151 if (optinfo->flags & IP6T_OPTS_OPTS
163 const struct ip6t_opts *optinfo = (struct ip6t_opts *)match->data; local
    [all...]
  /external/deqp/framework/delibs/decpp/
deCommandLine.hpp 262 struct OptInfo;
264 typedef void (*DispatchParseFunc) (const OptInfo* info, const char* src, TypedFieldMap* dst);
267 struct OptInfo
284 OptInfo (void)
299 void addOption (const OptInfo& option);
302 static void dispatchParse (const OptInfo* info, const char* src, TypedFieldMap* dst);
304 vector<OptInfo> m_options;
318 void Parser::dispatchParse (const OptInfo* info, const char* src, TypedFieldMap* dst)
375 OptInfo opt;
deCommandLine.cpp 109 void Parser::addOption (const OptInfo& option)
116 typedef map<string, const OptInfo*> OptMap;
117 typedef set<const OptInfo*> OptSet;
126 for (vector<OptInfo>::const_iterator optIter = m_options.begin(); optIter != m_options.end(); optIter++)
128 const OptInfo& opt = *optIter;
173 const OptInfo* opt = optPos != optMap.end() ? optPos->second : DE_NULL;
247 for (vector<OptInfo>::const_iterator optIter = m_options.begin(); optIter != m_options.end(); ++optIter)
249 const OptInfo& opt = *optIter;

Completed in 262 milliseconds