Home
last modified time | relevance | path

Searched refs:routes (Results 1 – 25 of 166) sorted by relevance

1234567

/OK3568_Linux_fs/kernel/net/netrom/
H A Dnr_route.c83 if (nr_node->routes[y].quality > nr_node->routes[x].quality) { in re_sort_routes()
89 swap(nr_node->routes[x], nr_node->routes[y]); in re_sort_routes()
128 if (nr_nodet->routes[i].neighbour == nr_neigh) in nr_add_node()
199 nr_node->routes[0].quality = quality; in nr_add_node()
200 nr_node->routes[0].obs_count = obs_count; in nr_add_node()
201 nr_node->routes[0].neighbour = nr_neigh; in nr_add_node()
220 if (nr_node->routes[i].neighbour == nr_neigh) { in nr_add_node()
221 nr_node->routes[i].quality = quality; in nr_add_node()
222 nr_node->routes[i].obs_count = obs_count; in nr_add_node()
231 nr_node->routes[2] = nr_node->routes[1]; in nr_add_node()
[all …]
/OK3568_Linux_fs/kernel/net/phonet/
H A Dpn_dev.c31 struct phonet_routes routes; member
261 mutex_lock(&pnn->routes.lock); in phonet_route_autodel()
263 if (rcu_access_pointer(pnn->routes.table[i]) == dev) { in phonet_route_autodel()
264 RCU_INIT_POINTER(pnn->routes.table[i], NULL); in phonet_route_autodel()
267 mutex_unlock(&pnn->routes.lock); in phonet_route_autodel()
314 mutex_init(&pnn->routes.lock); in phonet_init_net()
360 struct phonet_routes *routes = &pnn->routes; in phonet_route_add() local
364 mutex_lock(&routes->lock); in phonet_route_add()
365 if (routes->table[daddr] == NULL) { in phonet_route_add()
366 rcu_assign_pointer(routes->table[daddr], dev); in phonet_route_add()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeoroutereply.cpp193 QList<QGeoRoute> QGeoRouteReply::routes() const in routes() function in QGeoRouteReply
195 return d_ptr->routes; in routes()
201 void QGeoRouteReply::setRoutes(const QList<QGeoRoute> &routes) in setRoutes() argument
203 d_ptr->routes = routes; in setRoutes()
209 void QGeoRouteReply::addRoutes(const QList<QGeoRoute> &routes) in addRoutes() argument
211 d_ptr->routes.append(routes); in addRoutes()
H A Dqgeoroutereply.h71 QList<QGeoRoute> routes() const;
86 void setRoutes(const QList<QGeoRoute> &routes);
87 void addRoutes(const QList<QGeoRoute> &routes);
H A Dqgeorouteparser.cpp76 QGeoRouteReply::Error QGeoRouteParser::parseReply(QList<QGeoRoute> &routes, QString &errorString, c… in parseReply() argument
79 return d->parseReply(routes, errorString, reply); in parseReply()
/OK3568_Linux_fs/kernel/drivers/gpu/drm/rcar-du/
H A Drcar_du_drv.c42 .routes = {
64 .routes = {
85 .routes = {
112 .routes = {
141 .routes = {
168 .routes = {
196 .routes = {
223 .routes = {
246 .routes = {
275 .routes = {
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/nokia_services/routing/
H A Dtst_routing.cpp377 QList<QGeoRoute> routes = m_reply->routes(); in can_compute_route_for_all_supported_travel_modes() local
378 QCOMPARE(1, routes.size()); in can_compute_route_for_all_supported_travel_modes()
379 QGeoRoute& route = routes[0]; in can_compute_route_for_all_supported_travel_modes()
407 QList<QGeoRoute> routes = m_reply->routes(); in can_compute_route_for_all_supported_optimizations() local
408 QCOMPARE(1, routes.size()); in can_compute_route_for_all_supported_optimizations()
409 QGeoRoute& route = routes[0]; in can_compute_route_for_all_supported_optimizations()
430 QList<QGeoRoute> routes = m_reply->routes(); in can_handle_multiple_routes_in_response() local
431 QCOMPARE(2, routes.size()); in can_handle_multiple_routes_in_response()
433 verifySaneRoute(routes[0]); in can_handle_multiple_routes_in_response()
434 verifySaneRoute(routes[1]); in can_handle_multiple_routes_in_response()
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/comedi/drivers/
H A Dni_routes.c159 const struct ni_route_set *R = &tables->valid_routes->routes[i]; in ni_count_valid_routes()
213 const struct ni_route_set *R = &tables->valid_routes->routes[i]; in ni_get_valid_routes()
315 while (valid_routes->routes[valid_routes->n_route_sets].dest != 0) in ni_sort_device_routes()
319 sort(valid_routes->routes, valid_routes->n_route_sets, in ni_sort_device_routes()
324 struct ni_route_set *rs = &valid_routes->routes[n]; in ni_sort_device_routes()
332 sort(valid_routes->routes[n].src, valid_routes->routes[n].n_src, in ni_sort_device_routes()
385 return bsearch(&destination, valid_routes->routes, in ni_find_route_set()
397 bool ni_route_set_has_source(const struct ni_route_set *routes, in ni_route_set_has_source() argument
400 if (!bsearch(&source, routes->src, routes->n_src, sizeof(int), in ni_route_set_has_source()
471 const struct ni_route_set *routes = in ni_route_to_register() local
[all …]
H A Dni_routes.h54 struct ni_route_set *routes; member
101 bool ni_route_set_has_source(const struct ni_route_set *routes, const int src);
/OK3568_Linux_fs/kernel/drivers/staging/comedi/drivers/ni_routing/tools/
H A Dconvert_c_to_py.c109 while (dR->routes[i].dest != 0) { in device_write()
110 if (!is_valid_ni_sig(dR->routes[i].dest)) { in device_write()
113 dR->routes[i].dest, dR->device, i); in device_write()
117 fprintf(fp, " %u : [", dR->routes[i].dest); in device_write()
121 while (dR->routes[i].src[j] != 0) { in device_write()
122 if (!is_valid_ni_sig(dR->routes[i].src[j])) { in device_write()
125 dR->routes[i].src[j], dR->device, i, j); in device_write()
129 fprintf(fp, "%u,", dR->routes[i].src[j]); in device_write()
/OK3568_Linux_fs/kernel/drivers/staging/comedi/drivers/tests/
H A Dni_routes_test.c87 .routes = (struct ni_route_set[]){
189 if (last >= devroutes->routes[i].dest) in route_set_dests_in_order()
191 last = devroutes->routes[i].dest; in route_set_dests_in_order()
205 for (j = 0; j < devroutes->routes[i].n_src; ++j) { in route_set_sources_in_order()
206 if (last >= devroutes->routes[i].src[j]) in route_set_sources_in_order()
208 last = devroutes->routes[i].src[j]; in route_set_sources_in_order()
229 unittest(devroutes->routes->dest == NI_PFI(0), in test_ni_assign_device_routes()
231 unittest(devroutes->routes->n_src == 1, in test_ni_assign_device_routes()
233 unittest(devroutes->routes->src[0] == NI_AI_StartTrigger, in test_ni_assign_device_routes()
235 unittest(devroutes->routes[10].dest == TRIGGER_LINE(0), in test_ni_assign_device_routes()
[all …]
/OK3568_Linux_fs/kernel/sound/soc/rockchip/
H A Drk3399_gru_sound.c397 const struct snd_soc_dapm_route *routes; member
403 .routes = rockchip_sound_cdndp_routes,
407 .routes = rockchip_sound_da7219_routes,
411 .routes = rockchip_sound_dmic_routes,
415 .routes = rockchip_sound_max98357a_routes,
419 .routes = rockchip_sound_rt5514_routes,
482 struct snd_soc_dapm_route *routes; in rockchip_sound_of_parse_dais() local
494 routes = devm_kcalloc(dev, num_routes, sizeof(*routes), in rockchip_sound_of_parse_dais()
496 if (!routes) in rockchip_sound_of_parse_dais()
498 card->dapm_routes = routes; in rockchip_sound_of_parse_dais()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeoroutereply/
H A Dtst_qgeoroutereply.cpp133 void tst_QGeoRouteReply::routes() in routes() function in tst_QGeoRouteReply
135 QList<QGeoRoute> routes; in routes() local
142 routes.append(*route1); in routes()
143 routes.append(*route2); in routes()
145 reply->callSetRoutes(routes); in routes()
148 routescopy = reply->routes(); in routes()
149 QCOMPARE(routescopy,routes); in routes()
H A Dtst_qgeoroutereply.h50 void callSetRoutes(const QList<QGeoRoute> & routes ) {setRoutes(routes);} in callSetRoutes() argument
70 void routes();
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/osm/
H A Dqgeoroutereplyosm.cpp75 QList<QGeoRoute> routes; in networkReplyFinished() local
77 QGeoRouteReply::Error error = parser->parseReply(routes, errorString, reply->readAll()); in networkReplyFinished()
79 for (QGeoRoute &route : routes) { in networkReplyFinished()
87 setRoutes(routes.mid(0, request().numberAlternativeRoutes() + 1)); in networkReplyFinished()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapbox/
H A Dqgeoroutereplymapbox.cpp125 QList<QGeoRoute> routes; in networkReplyFinished() local
129 QGeoRouteReply::Error error = parser->parseReply(routes, errorString, routeReply); in networkReplyFinished()
131 for (QGeoRoute &route : routes) { in networkReplyFinished()
142 for (const QGeoRoute &route : routes.mid(0, request().numberAlternativeRoutes() + 1)) { in networkReplyFinished()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/geotestplugin/
H A Dqgeoroutingmanagerengine_test.h81 void callSetRoutes(const QList<QGeoRoute> &routes) {setRoutes(routes);} in callSetRoutes() argument
169 QList<QGeoRoute> routes; in setRoutes() local
196 routes.append(route); in setRoutes()
198 reply->callSetRoutes(routes); in setRoutes()
/OK3568_Linux_fs/buildroot/package/smcroute/
H A DConfig.in6 routes of a UNIX kernel. It supports both IPv4 and IPv6
9 where static multicast routes should be maintained and/or no
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/ifmetric/ifmetric/
H A Difmetric.8_typo.patch9 …ses the Linux NETLINK interface to manipulate the routes. Because of that it is compatible with ro…
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/interrupt-controller/
H A Dti,omap4-wugen-mpu4 routes interrupts to the GIC, and also serves as a wakeup source. It
18 - Because this HW ultimately routes interrupts to the GIC, the
H A Dnvidia,tegra20-ictlr.txt3 All Tegra SoCs contain a legacy interrupt controller that routes
25 - Because this HW ultimately routes interrupts to the GIC, the
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/
H A Dqgeoroutereply_nokia.cpp108 void QGeoRouteReplyNokia::appendResults(const QList<QGeoRoute> &routes) in appendResults() argument
114 addRoutes(routes); in appendResults()
/OK3568_Linux_fs/kernel/sound/soc/
H A Dsoc-topology.c1199 struct snd_soc_dapm_route **routes; in soc_tplg_dapm_graph_elems_load() local
1218 routes = kcalloc(count, sizeof(struct snd_soc_dapm_route *), in soc_tplg_dapm_graph_elems_load()
1220 if (!routes) in soc_tplg_dapm_graph_elems_load()
1229 routes[i] = kzalloc(sizeof(*routes[i]), GFP_KERNEL); in soc_tplg_dapm_graph_elems_load()
1230 if (!routes[i]) { in soc_tplg_dapm_graph_elems_load()
1233 kfree(routes[j]); in soc_tplg_dapm_graph_elems_load()
1235 kfree(routes); in soc_tplg_dapm_graph_elems_load()
1261 routes[i]->source = elem->source; in soc_tplg_dapm_graph_elems_load()
1262 routes[i]->sink = elem->sink; in soc_tplg_dapm_graph_elems_load()
1265 routes[i]->connected = NULL; in soc_tplg_dapm_graph_elems_load()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/esri/
H A Dgeoroutejsonparser_esri.cpp110 QList<QGeoRoute> GeoRouteJsonParserEsri::routes() const in routes() function in GeoRouteJsonParserEsri
216 QJsonObject routes = m_json.value(kRoutesKey).toObject(); in parseRoutes() local
217 QJsonArray features = routes.value(kRoutesFeaturesKey).toArray(); in parseRoutes()
/OK3568_Linux_fs/kernel/Documentation/networking/
H A Dipddp.rst49 which enables you to add routes to the kernel for your Macs by hand.
54 but it allows automatic adding and deleting of routes for Macs. (Handy
59 You will also need to add the proper routes to route your Linux box's IP

1234567