HomeSort by: relevance | last modified time | path
    Searched defs:capdata (Results 1 - 2 of 2) sorted by relevancy

  /src/sbin/ifconfig/
ether.c 100 prop_data_t capdata; local in function:getethercaps
102 capdata = (prop_data_t)prop_dictionary_get(env, "ethercaps");
104 if (capdata != NULL) {
105 tmpeccr = prop_data_value(capdata);
113 capdata = prop_data_create_copy(&eccr, sizeof(eccr));
115 rc = prop_dictionary_set(oenv, "ethercaps", capdata);
117 prop_object_release((prop_object_t)capdata);
127 prop_data_t capdata; local in function:setethercaps
142 if ((capdata = prop_data_create_copy(&eccr, sizeof(eccr))) == NULL)
145 rc = prop_dictionary_set(oenv, "ethercaps", capdata);
    [all...]
ifconfig.c 1095 prop_data_t capdata; local in function:getifcaps
1097 capdata = (prop_data_t)prop_dictionary_get(env, "ifcaps");
1099 if (capdata != NULL) {
1100 tmpifcr = prop_data_value(capdata);
1108 capdata = prop_data_create_copy(&ifcr, sizeof(ifcr));
1110 rc = prop_dictionary_set(oenv, "ifcaps", capdata);
1112 prop_object_release((prop_object_t)capdata);
1122 prop_data_t capdata; local in function:setifcaps
1137 if ((capdata = prop_data_create_copy(&ifcr, sizeof(ifcr))) == NULL)
1140 rc = prop_dictionary_set(oenv, "ifcaps", capdata);
    [all...]

Completed in 11 milliseconds