Searched defs:address (Results 1 - 25 of 192) sorted by relevance

12345678

/illumos-gate/usr/src/cmd/sgs/librtld_db/demo/common/
H A Dgram.y46 %type <addr> NUMBER address
63 | BREAK address NEWLINE
77 | DELETE address NEWLINE
93 | DIS address NEWLINE
98 | DIS address NUMBER NEWLINE
217 | PRINT address NEWLINE
222 | PRINT address NUMBER NEWLINE
227 | PRINT address NUMBER SYMBOL NEWLINE
232 | VALUE address NEWLINE
255 address label
[all...]
H A Ddis.c52 * This routine converts 'address' into it's closest symbol
62 * the 'hex' value of address.
67 print_address_ps(struct ps_prochandle *ph, ulong_t address, unsigned flags) argument
74 if (addr_to_sym(ph, address, &sym, &str) == RET_OK) {
82 if ((mip = addr_to_map(ph, address)) != 0) {
86 (void) sprintf(buf, "0x%08lx:", address);
91 (pltbase = is_plt(ph, address)) != 0) {
99 if (rd_plt_resolution(ph->pp_rap, address,
110 buf, address, _str);
117 buf, address, addres
140 print_address(unsigned long address) argument
[all...]
H A Dutils.c98 print_mem(struct ps_prochandle *ph, ulong_t address, int count, char *format) argument
100 (void) printf("\n%17s:", print_address_ps(ph, address, FLG_PAP_SONAME));
108 (void) printf("\n 0x%08lx: ", address);
110 if (ps_pread(ph, address, (char *)&word,
113 "0x%lx\n", address);
117 address += 4;
126 for (i = 0; i < count; i++, address ++) {
130 (void) printf("\n 0x%08lx: ", address);
132 if (ps_pread(ph, address, (char *)&byte,
135 "at: 0x%lx\n", address);
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dgen_rname.c27 * take a port-style address and unique string, and return
35 krb5_gen_replay_name(krb5_context context, const krb5_address *address, const char *uniq, char **string) argument
40 if ((*string = malloc(strlen(uniq) + (address->length * 2) + 1)) == NULL)
46 for (i = 0; i < address->length; i++) {
47 sprintf(tmp, "%.2x", address->contents[i] & 0xff);
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DActiveDiscoverer.java72 private InetAddress address = null; field in class:ActiveDiscoverer
79 InetAddress address) {
87 this.address = address;
76 ActiveDiscoverer(int version, ServerDATable table, Vector useScopes, InetAddress address) argument
H A DSunDATable.java52 * DA IP address in the host field and a list of scopes in the URL
199 * Remove a DA by address. We only remove it from the wire table
202 * @param address The host address of the DA.
207 boolean removeDA(InetAddress address, Vector scopes) { argument
228 if (address.equals(daaddr)) {
H A DDATable.java113 * Remove a DA by address.
115 * @param address The host address of the DA.
120 abstract boolean removeDA(InetAddress address, Vector scopes); argument
279 // Add a new address to the equivalence class.
337 // Add to record. Optimize, by putting the local address at the
H A DSunServerDATable.java48 * DA address as the host, followed by the list of scopes as an attribute
241 * @param address The host address of the DA, from its service URL.
246 public synchronized boolean removeDA(InetAddress address, Vector scopes) { argument
248 // Find URLs corresponding to this address.
250 String query = "(" + ADDRESS_ID + "=" + address.getHostAddress() + ")";
275 address,
/illumos-gate/usr/src/cmd/sgs/gprof/common/
H A Dlookup.c33 * look up an address in a sorted-by-address namelist
40 nllookup(mod_info_t *module, pctype address, pctype *nxtsym) argument
48 * a symbol, then the actual load address will be the same as the
49 * address specified in the ELF file. For shared objects, the
50 * load address may differ from what is specified in the file. In
53 keyval = module->txt_origin + (address - module->load_base);
/illumos-gate/usr/src/cmd/sgs/prof/common/
H A Dlookup.c35 * Look up an address in a sorted-by-address namelist; this deals with
39 nllookup(mod_info_t *module, Address address, Address *nxtsym_val) argument
47 * a symbol, then the actual load address will be the same as the
48 * address specified in the ELF file. For shared objects, the
49 * load address may differ from what is specified in the file. In
52 keyval = module->txt_origin + (address - module->load_base);
92 * Look up a module's base address in a sorted list of pc-hits. Unlike
/illumos-gate/usr/src/cmd/krb5/krb5kdc/
H A Dkdc_util.h45 krb5_address * address; member in struct:_krb5_fulladdr
H A Dsock2p.c39 inet_ntop (int family, const void *address, char *buf, size_t bufsiz) argument
45 p = inet_ntoa (*(const struct in_addr *)address);
57 &((const struct in6_addr *)address)->s6_addr;
/illumos-gate/usr/src/cmd/listen/
H A Dnsaddr.h29 stoa - convert string to address
31 atos - convert address to string
50 struct address { struct
57 struct address *astoa(/* str, addr */);
/illumos-gate/usr/src/uts/common/io/scsi/adapters/iscsi/
H A Discsi_crc.c123 iscsi_crc32c(void *address, unsigned long length) argument
125 uint8_t *buffer = address;
141 ASSERT(address != NULL);
166 iscsi_crc32c_continued(void *address, unsigned long length, uint32_t crc) argument
168 uint8_t *buffer = address;
184 ASSERT(address != NULL);
/illumos-gate/usr/src/cmd/vi/port/
H A Dex_addr.c38 * Routines for address parsing and assignment and checking of address bounds
39 * in command mode. The routine address is called from ex_cmds.c
48 * involved in an address expression, so we can set the previous context
55 * Set up addr1 and addr2 for commands whose default address is dot.
80 gettext("First address exceeds second"));
193 * No address allowed on, e.g. the file command.
201 gettext("No address allowed") :
202 gettext("No address allowed on this command"));
206 * Parse an address
214 address(inputline) function
[all...]
/illumos-gate/usr/src/common/hdcrc/
H A Dhd_crc.h130 intel_crc32c(uint8_t *address, unsigned long length, uint32_t crc) argument
132 uint32_t i = (uintptr_t)address & INTEL_CRC_ALIGN_MASK;
133 uint8_t *data = address;
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/krb5/krb/
H A Dser_addr.c65 krb5_address *address;
72 * address->length for contents
77 address = (krb5_address *) arg;
78 if (address) {
83 (size_t) address->length);
97 krb5_address *address;
107 address = (krb5_address *) arg;
108 if (address) {
116 (void) krb5_ser_pack_int32((krb5_int32) address->addrtype,
120 (void) krb5_ser_pack_int32((krb5_int32) address
64 krb5_address *address; local
95 krb5_address *address; local
146 krb5_address *address; local
[all...]
/illumos-gate/usr/src/uts/common/cpr/
H A Dcpr_driver.c235 * Returns a string which contains device name and address.
241 char *address; local
245 address = ddi_get_name_addr(devi);
247 size += (address == NULL) ? strlen("<null>") : strlen(address);
261 if (address == NULL)
264 (void) strcat(buf, address);
/illumos-gate/usr/src/uts/common/xen/public/
H A Dcallback.h87 xen_callback_t address; member in struct:callback_register
/illumos-gate/usr/src/lib/efcode/engine/
H A Dtracing.c102 void *address; local
109 address = dlsym(RTLD_DEFAULT, dlip.dli_sname);
110 offset = ((char *) fn) - ((char *) address);
/illumos-gate/usr/src/lib/libsldap/common/
H A Dns_trace.c57 void *address; member in struct:option
84 *((char **)opt->address) = p;
91 *((int *)opt->address) = n;
102 *((int *)opt->address) = fd;
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DKernelSymbolRecord.java36 * kernel address.
52 new String[] {"symbol", "address"})
79 private final long address; field in class:KernelSymbolRecord
87 address = addressValue;
92 * and kernel address converted in probe context as a result of the
97 * @param addressValue symbol address
99 * looking up the symbol associated with the given kernel address
106 address = addressValue;
119 * Gets the result of the address lookup in the same form returned
120 * by {@link Consumer#lookupKernelFunction(long address)}
[all...]
/illumos-gate/usr/src/lib/libtsnet/common/
H A Dtsol_sgetrhent.c29 * field is the IP host or network address. The second is the name of the
54 * This routine deals with old pre-CIDR subnet address specifications. In the
78 * This routine deals with old pre-CIDR network address specifications. In the
86 * This routine must compute the mask and left-align the address.
110 /* IPv4 address */
129 /* IPv6 address */
145 * IP address.
169 char *address = rhstrp->address; local
184 *errstrp = address;
[all...]
/illumos-gate/usr/src/cmd/mdb/common/kmdb/
H A Dkmdb_dl.c146 dladdr1(void *address, Dl_info *dlip, void **info, int flags) argument
/illumos-gate/usr/src/uts/common/os/
H A Dmemlist_new.c180 memlist_find(struct memlist *mlp, uint64_t address) argument
183 if (address >= mlp->ml_address &&
184 address < (mlp->ml_address + mlp->ml_size))
198 uint64_t address,
215 dst->ml_address = address;
233 if (address > (next->ml_address + next->ml_size))
243 if ((address + bytes) == next->ml_address) {
246 next->ml_address = address;
255 if (address == (next->ml_address + next->ml_size)) {
262 if ((address
197 memlist_add_span( uint64_t address, uint64_t bytes, struct memlist **curmemlistp) argument
332 memlist_delete_span( uint64_t address, uint64_t bytes, struct memlist **curmemlistp) argument
[all...]

Completed in 133 milliseconds

12345678