HomeSort by relevance Sort by last modified time
    Searched refs:subopts (Results 1 - 2 of 2) sorted by null

  /external/libnl/src/lib/
route.c 94 void nl_cli_route_parse_metric(struct rtnl_route *route, char *subopts)
116 while (*subopts != '\0') {
117 int ret = getsubopt(&subopts, tokens, &arg);
137 void nl_cli_route_parse_nexthop(struct rtnl_route *route, char *subopts,
160 while (*subopts != '\0') {
161 int ret = getsubopt(&subopts, tokens, &arg);
  /bionic/tests/
stdlib_test.cpp 670 char* subopts = &input[0]; local
673 ASSERT_EQ(0, getsubopt(&subopts, tokens, &value));
675 ASSERT_EQ(1, getsubopt(&subopts, tokens, &value));
677 ASSERT_EQ(2, getsubopt(&subopts, tokens, &value));
679 ASSERT_EQ(0, getsubopt(&subopts, tokens, &value));
682 ASSERT_EQ(-1, getsubopt(&subopts, tokens, &value));

Completed in 161 milliseconds