Searched refs:agent (Results 1 - 25 of 53) sorted by relevance

123

/opensolaris-onvv-gate/usr/src/cmd/agents/snmp/snmprelayd/
H A Dsnmpdx.rsrc30 # for the SNMP agent bundled with SNM
40 max-agent-timeout = 999999999
H A Dagent.c41 #include "agent.h"
51 /* the agent list */
83 /* of the agent structures should be NULL */
117 /* The fisrt_agent_subtree member of the agent */
199 void agent_update_subtree(Agent* agent) argument
202 if(agent == NULL) return ;
203 sp = agent->first_agent_subtree;
205 sp->regTreeStatus = agent->agentStatus;
209 void agent_detach_from_list(Agent* agent) argument
213 if(agent
230 agent_destroy(Agent* agent) argument
[all...]
H A Dres.h52 Agent* agent; member in struct:_SapResource
62 extern SapResource *resource_find_by_agent(Agent* agent);
70 extern int ssa_subagent_is_alive(Agent *agent);
72 extern void delete_agent_from_resource_list(Agent *agent);
H A Dres.c46 #include "agent.h"
98 ap->agent?(ap->agent->name?ap->agent->name:""):"");
139 /* of the agent structures should be NULL */
151 if(ap->agent)
152 agent_destroy(ap->agent);
190 SapResource *resource_find_by_agent(Agent* agent) argument
194 if(agent == NULL) return NULL;
196 if(ap->agent
610 ssa_subagent_is_alive(Agent *agent) argument
845 delete_agent_from_resource_list(Agent *agent) argument
868 watch_dog_time_is_up(Agent *agent,int elapse_time) argument
[all...]
H A Dagent.h28 * 9-20-96 Jerry Yeung change agent structure
75 /* the agent list */
78 /* the address is a unique key for an agent */
85 /* of the agent structures should be NULL */
88 extern void agent_update_subtree(Agent* agent);
90 extern void agent_detach_from_list(Agent* agent);
92 extern void agent_destroy(Agent* agent);
H A Dsubtree.c49 #include "agent.h"
161 int subtree_add(Agent *agent, Subid *subids, int len, TblTag *tbl_tag) argument
169 if(agent == NULL)
171 error("BUG: subtree_add(): agent is NULL");
182 new->agent = agent;
194 new->regTreeAgentID = agent->agentID;
195 new->regTreeIndex = ++agent->agentTreeIndex;
204 error("The subtree %s already belongs to the agent %s",
206 sp->agent
410 delete_all_subtree_from_agent(Agent* agent) argument
449 Agent *agent = subtree->agent; local
547 sync_subtrees_with_agent(Agent *agent) argument
[all...]
H A Dsh_table.c46 tp->agent->name?tp->agent->name:"UNKNOWN",
147 void delete_all_tables_for_agent(Agent *agent) argument
155 if(tp->agent == agent){
291 if(subtree_add(tp->agent, dst_subids, dst_len,tbl_tag) == -1)
293 sprintf(error_label, "subtree_add() failed for table %s for the agent %s", SSAOidString(&(tp->name)),
294 tp->agent&&tp->agent->name?tp->agent
505 activate_table_for_agent(Agent* agent) argument
519 deactivate_table_for_agent(Agent* agent) argument
533 delete_all_table_from_agent(Agent *agent) argument
[all...]
H A Dsh_table.h47 #include "agent.h"
67 Agent *agent; member in struct:_Table
76 extern void delete_all_tables_for_agent(Agent *agent);
80 extern int activate_table_for_agent(Agent* agent);
87 extern void delete_all_table_from_agent(Agent *agent);
H A Dsubtree.h66 struct _Agent *agent; member in struct:_Subtree
83 int subtree_add(Agent *agent, Subid *subids, int len, TblTag *tbl_tag);
104 void delete_all_subtree_from_agent(Agent* agent);
108 int sync_subtrees_with_agent(Agent *agent);
H A Dsession.c58 #include "agent.h"
120 static int community_check(Address * address, Agent* agent, int pdu_type, char * community);
126 /* with an index 1.x are supported by agent A and the */
127 /* columns with an index 2.y are supporeted by agent B */
141 static int request_add_visited_agent(Request *request, Agent *agent);
143 static int is_in_agent_list(Agent_List *agent_list, Agent *agent);
197 Agent *agent = NULL; local
203 agent = subtree->agent;
220 trace("\t\t\t%s\n", alp->agent
261 Agent *agent, *prev_agent=NULL; local
405 local_agent(Agent *agent) argument
412 Agent* agent; local
1227 Agent *agent; local
1296 Agent *agent; local
1517 Agent *agent; local
1859 request_add_visited_agent(Request *request, Agent *agent) argument
1909 is_in_agent_list(Agent_List *agent_list, Agent *agent) argument
1941 community_check(Address * address, Agent * agent, int pdu_type, char * community) argument
[all...]
H A DMakefile66 agent.c\
84 agent.h\
92 ../agent/access.h\
93 ../agent/agent_msg.h\
112 MYLIBS= ../agent/$(MACH)/libssagent.so.$(EXT) ../snmplib/$(MACH)/libssasnmp.so.$(EXT)
113 MYLINKLIBS += -L../agent/$(MACH) -lssagent -L../snmplib -lssasnmp
123 CPPFLAGS += -I. -I../agent -I../snmplib -I../../include/netmgt -I${BIN}
/opensolaris-onvv-gate/usr/src/cmd/agents/snmp/agent/
H A Dsubtree.h38 struct _Agent *agent; member in struct:_Subtree
46 extern int subtree_add(Agent *agent, Subid *subids, int len);
H A Dsubtree.c60 int subtree_add(Agent *agent, Subid *subids, int len) argument
70 if(agent == NULL)
72 error("BUG: subtree_add(): agent is NULL");
83 new->agent = agent;
100 error("The subtree %s already belongs to the agent %s",
102 sp->agent->name);
126 new->next_agent_subtree = agent->first_agent_subtree;
127 agent->first_agent_subtree = new;
129 new->regTreeIndex = ++new->agent
315 Agent *agent = subtree->agent; local
[all...]
H A Dtable.h42 Agent *agent; member in struct:Table
H A Dreg_subtree.h36 extern int SSARegSubagent(Agent *agent);
41 * it will request a resource handler(an agent id) from the relay agent,
42 * it returns the agent id if successful, otherwise, return 0
H A DMakefile.com30 SRCOBJS = node.o access.o agent.o snmpd.o pagent.o subtree.o reg_subtree.o
43 MAPFILES = ../agent-mapfile-vers
/opensolaris-onvv-gate/usr/src/cmd/ldmad/
H A Dldmad.c32 * Each agent is registered as a domain service using the libds library,
35 * The control domain sends requests to an agent as messages on the
36 * corresponding domain service (identified by the agent name). All requests
38 * handler function of the agent depending on the type of the message.
67 #define LDMA_MODULE "ldm-agent-daemon"
78 ldma_agent_info_t *info; /* agent information */
102 * Lookup connexion in agent connexion table.
105 ldma_connexion_lookup(ldma_agent_t *agent, ds_hdl_t hdl) argument
110 ASSERT(MUTEX_HELD(&agent->conn_lock));
111 for (connp = agent
122 ldma_connexion_add(ldma_agent_t *agent, ds_hdl_t hdl, ds_domain_hdl_t dhdl, ds_ver_t *verp) argument
164 ldma_connexion_delete(ldma_agent_t *agent, ds_hdl_t hdl) argument
191 ldma_connexion_init(ldma_agent_t *agent) argument
249 ldma_agent_t *agent = (ldma_agent_t *)arg; local
276 ldma_agent_t *agent = (ldma_agent_t *)arg; local
296 ldma_agent_t *agent = (ldma_agent_t *)arg; local
438 ldma_agent_t *agent; local
[all...]
/opensolaris-onvv-gate/usr/src/lib/fm/libfmd_snmp/common/
H A Ddebug_subr.c29 #include <net-snmp/agent/net-snmp-agent-includes.h>
H A Dinit.c30 #include <net-snmp/agent/net-snmp-agent-includes.h>
45 * This is our entry point for initialization by the agent, which
47 * by the agent API.
70 ": table %s initialization failed: agent "
H A DsunFM_impl.h38 #include <net-snmp/agent/net-snmp-agent-includes.h>
66 * The definition of netsnmp_table_helper_add_index in <net-snmp/agent/table.h>
/opensolaris-onvv-gate/usr/src/cmd/agents/snmp/snmpdemod/
H A DReadMe28 steps to create the sample agent using the agent toolkit.
32 where you want to create your sub agent.
35 your sub agent.
42 Step 8 : Type "make", the sample agent executable will be created
44 the sub agent need to provide.
52 agent */
57 /* file for oid(subtrees) registration with master agent.
/opensolaris-onvv-gate/usr/src/uts/common/io/ib/clients/of/sol_umad/
H A Dsol_umad.c30 * ofuv user MAD kernel agent module
1103 /* Returns an agent from its ID. */
1107 umad_agent_t *agent; local
1112 /* Look for the agent */
1114 agent = entry->ptr;
1116 if (agent_id == agent->agent_req.id)
1117 return (agent);
1123 /* Returns an agent from its MAD class. */
1127 umad_agent_t *agent; local
1132 /* Look for the agent */
1147 umad_register_agent(struct umad_agent_s *agent) argument
1304 umad_queue_mad_msg(struct umad_agent_s *agent, ibmf_msg_t *ibmf_msg) argument
1520 umad_agent_t *agent; local
1693 struct umad_agent_s *agent; local
1833 umad_agent_t *agent = umad_ctx->send_agent; local
1896 umad_agent_t *agent; local
2273 umad_agent_t *agent = entry->ptr; local
2312 umad_agent_t *agent = NULL; local
2381 umad_agent_t *agent; local
2631 struct umad_agent_s *agent; local
[all...]
/opensolaris-onvv-gate/usr/src/cmd/ssh/ssh-agent/
H A DMakefile24 # cmd/ssh/ssh-agent/Makefile
26 PROG= ssh-agent
29 ssh-agent.o
/opensolaris-onvv-gate/usr/src/cmd/agents/snmp/
H A DMakefile28 agent \
/opensolaris-onvv-gate/usr/src/lib/udapl/udapl_tavor/common/
H A Ddapl_cno_query.c94 cno_param->agent = cno_ptr->cno_wait_agent;

Completed in 127 milliseconds

123