Searched refs:remote_id (Results 1 - 23 of 23) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-msm/
H A Dclock-7x30.h152 .remote_id = P_##clk_id, \
161 .remote_id = P_##r_id, \
H A Dclock-pcom.h146 .remote_id = P_##clk_id, \
H A Dclock.h52 uint32_t remote_id; member in struct:clk
H A Dclock.c111 return clk->ops->reset(clk->remote_id, action);
176 clk->id = clk->remote_id;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/forked-daapd-0.19/src/
H A Dremote_pairing.c236 if (!ri->pi.remote_id)
239 if (strcmp(ri->pi.remote_id, id) == 0)
281 if (!ri->pi.remote_id)
284 if (strcmp(ri->pi.remote_id, id) == 0)
323 ri->pi.remote_id = strdup(id);
348 if (!ri->pi.remote_id || !check_addr)
450 DPRINTF(E_LOG, L_REMOTE, "Pairing failed with Remote %s/%s, HTTP response code %d\n", ri->pi.remote_id, ri->pi.name, req->response_code);
457 DPRINTF(E_LOG, L_REMOTE, "Remote %s/%s: pairing response too short\n", ri->pi.remote_id, ri->pi.name);
466 DPRINTF(E_LOG, L_REMOTE, "Remote %s/%s: unknown pairing response, expected cmpa\n", ri->pi.remote_id, ri->pi.name);
475 ri->pi.remote_id, r
[all...]
H A Ddb.h72 char *remote_id; member in struct:pairing_info
H A Ddb.c322 if (pi->remote_id)
323 free(pi->remote_id);
3231 db_pairing_delete_byremote(char *remote_id) argument
3236 query = sqlite3_mprintf(Q_TMPL, remote_id);
3249 ret = db_pairing_delete_byremote(pi->remote_id);
3253 query = sqlite3_mprintf(Q_TMPL, pi->remote_id, pi->name, pi->guid);
3296 pi->remote_id = strdup((char *)sqlite3_column_text(stmt, 0));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/aic7xxx/
H A Daic7xxx_inline.h70 u_int remote_id,
H A Daic79xx_inline.h120 u_int remote_id,
H A Daic7xxx_core.c439 * for the specified our_id/remote_id pair.
443 u_int remote_id, struct ahc_tmode_tstate **tstate)
454 return (&(*tstate)->transinfo[remote_id]);
442 ahc_fetch_transinfo(struct ahc_softc *ahc, char channel, u_int our_id, u_int remote_id, struct ahc_tmode_tstate **tstate) argument
H A Daic79xx_core.c566 * for the specified our_id/remote_id pair.
570 u_int remote_id, struct ahd_tmode_tstate **tstate)
581 return (&(*tstate)->transinfo[remote_id]);
569 ahd_fetch_transinfo(struct ahd_softc *ahd, char channel, u_int our_id, u_int remote_id, struct ahd_tmode_tstate **tstate) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/infiniband/core/
H A Dcm.c187 __be32 remote_id; member in struct:cm_work
408 static struct cm_id_private * cm_get_id(__be32 local_id, __be32 remote_id) argument
415 if (cm_id_priv->id.remote_id == remote_id)
424 static struct cm_id_private * cm_acquire_id(__be32 local_id, __be32 remote_id) argument
429 cm_id_priv = cm_get_id(local_id, remote_id);
574 __be32 remote_id = timewait_info->work.remote_id; local
580 if (be32_lt(remote_id, cur_timewait_info->work.remote_id))
597 cm_find_remote_id(__be64 remote_ca_guid, __be32 remote_id) argument
657 __be32 remote_id = cm_id_priv->id.remote_id; local
2283 __be32 remote_id; local
[all...]
H A Ducm.c595 resp.remote_id = ctx->cm_id->remote_id;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/bgpd/
H A Dbgp_packet.c1054 bgp_collision_detect (struct peer *new, struct in_addr remote_id)
1086 if (ntohl (peer->local_id.s_addr) < ntohl (remote_id.s_addr))
1125 struct in_addr remote_id;
1138 remote_id.s_addr = stream_get_ipv4 (peer->ibuf);
1144 inet_ntoa (remote_id));
1151 realpeer = peer_lookup_with_open (&peer->su, remote_as, &remote_id, &as);
1162 peer->host, inet_ntoa (remote_id));
1184 ret = bgp_collision_detect (peer, remote_id);
1234 if (remote_id.s_addr == 0
1235 || ntohl (remote_id
1052 bgp_collision_detect(struct peer *new, struct in_addr remote_id) argument
1123 struct in_addr remote_id; local
[all...]
H A Dbgpd.h243 struct in_addr remote_id; member in struct:peer
H A Dbgp_fsm.c384 peer->remote_id.s_addr = 0;
H A Dbgp_snmp.c464 return SNMP_IPADDRESS (peer->remote_id);
H A Dbgpd.c1805 struct in_addr *remote_id, int *as)
1821 && peer->remote_id.s_addr == remote_id->s_addr)
1833 && peer->remote_id.s_addr == 0)
1791 peer_lookup_with_open(union sockunion *su, as_t remote_as, struct in_addr *remote_id, int *as) argument
H A Dbgp_attr.c1504 stream_put_in_addr (s, &from->remote_id);
H A Dbgp_route.c296 new_id.s_addr = new->peer->remote_id.s_addr;
300 exist_id.s_addr = exist->peer->remote_id.s_addr;
507 if (IPV4_ADDR_SAME (&peer->remote_id, &ri->attr->originator_id))
4211 vty_out (vty, " (%s)", inet_ntop (AF_INET, &binfo->peer->remote_id, buf1, BUFSIZ));
H A Dbgp_vty.c6522 inet_ntop (AF_INET, &p->remote_id, buf1, BUFSIZ),
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/rdma/
H A Dib_cm.h290 __be32 remote_id; member in struct:ib_cm_id
H A Dib_user_cm.h102 __be32 remote_id; member in struct:ib_ucm_attr_id_resp

Completed in 241 milliseconds