/illumos-gate/usr/src/cmd/sgs/libldstab/common/ |
H A D | stab.c | 47 * The current version of /usr/lib/libldstab.so.1 is a stub that exists 51 * will be loaded. It specifies a support library version of 66 ld_version64(uint_t version) argument 68 ld_version(uint_t version)
|
/illumos-gate/usr/src/cmd/sgs/libconv/common/ |
H A D | map.c | 37 conv_mapfile_version(Word version, Conv_fmt_flags_t fmt_flags, argument 50 return (conv_map_ds(ELFOSABI_NONE, EM_NONE, version, ds, fmt_flags,
|
/illumos-gate/usr/src/lib/pkcs11/include/ |
H A D | pkcs11.h | 8 /* Latest version of the specification: 43 * If you're using an earlier version of Microsoft Developer 67 * If you're using an earlier version of Microsoft Developer 92 * If you're using an earlier version of Microsoft Developer 129 * If you're using an earlier version of Microsoft Developer 162 * If you're using an earlier version of Microsoft Developer 233 * contains a CK_VERSION indicating a library's Cryptoki version 245 CK_VERSION version; /* Cryptoki version */ member in struct:CK_FUNCTION_LIST
|
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/ |
H A D | accessor.c | 35 /* ...as does GCC, since version 2.something. */ \ 44 krb5int_accessor(krb5int_access *internals, krb5_int32 version) argument 46 if (version == KRB5INT_ACCESS_VERSION) {
|
/illumos-gate/usr/src/lib/libnsl/saf/ |
H A D | checkver.c | 42 * check_version - check to make sure designated file is the correct version 43 * returns : 0 - version correct 44 * 1 - version incorrect 56 int version; /* version number from sactab */ local 65 version = atoi(p); 69 return ((version != ver) ? 1 : 0);
|
/illumos-gate/usr/src/lib/libc/i386/sys/ |
H A D | xstat.c | 43 _xstat(int version, const char *path, struct stat *statb) argument 45 if (version != _STAT_VER) { 53 _lxstat(int version, const char *path, struct stat *statb) argument 55 if (version != _STAT_VER) { 63 _fxstat(int version, int fd, struct stat *statb) argument 65 if (version != _STAT_VER) { 73 _xmknod(int version, const char *path, mode_t mode, dev_t dev) argument 75 if (version != _MKNOD_VER) {
|
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | mkdev.c | 41 __makedev(const int version, const major_t majdev, const minor_t mindev) argument 44 switch (version) { 85 __major(const int version, const dev_t devnum) argument 89 switch (version) { 125 __minor(const int version, const dev_t devnum) argument 127 switch (version) {
|
/illumos-gate/usr/src/cmd/fm/fmd/common/ |
H A D | fmd_rpc_api.c | 33 fmd_hdl_create_1_svc(int version, void *rvp, struct svc_req *req) argument
|
/illumos-gate/usr/src/cmd/fm/schemes/legacy-hc/ |
H A D | scheme.c | 31 uint8_t version; local 35 if (nvlist_lookup_uint8(nvl, FM_VERSION, &version) != 0 || 36 version > FM_LEGACY_SCHEME_VERSION ||
|
/illumos-gate/usr/src/lib/libast/common/include/ |
H A D | magicid.h | 42 Magicid_data_t version; /* YYYYMMDD or 0xWWXXYYZZ */ member in struct:Magicid_s
|
/illumos-gate/usr/src/lib/libprtdiag/common/ |
H A D | prom.c | 63 Prop *version; local 64 char *vers; /* OBP version */ 67 /* Look version */ 68 version = find_prop(flashprom, "version"); 70 vers = (char *)get_prop_val(version); 77 * version string. Do not attempt to print POST 79 * length of the OBP version string. 81 if ((strlen(vers) + 1) < version->size) { 110 * display all proms with a "version"(OB [all...] |
/illumos-gate/usr/src/lib/fm/topo/libtopo/common/ |
H A D | topo_rtld.c | 67 rtld_init(topo_mod_t *mod, topo_version_t version) argument 96 err = rp->rtld_init(mod, version);
|
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | ActiveDiscoverer.java | 60 private int version = 0; field in class:ActiveDiscoverer 76 ActiveDiscoverer(int version, argument 81 this.version = version; 201 version, 333 hdr.version,
|
H A D | ClientMsgManager.java | 58 // Register a new message type class and version. 61 int version, 66 String key = makeClassKey(keyName, version); 88 int version, 97 (Class)classTable.get(makeClassKey(keyName, version)); 105 new Integer(version)}); 130 new Integer(version), 137 private static String makeClassKey(String className, int version) { argument 139 return className + version; 60 addClientMsgClass(String className, int version, String keyName) argument 87 newInstance(String keyName, int version, boolean isTCP) argument
|
H A D | SSAAdvert.java | 52 SSAAdvert(int version, argument 66 new Object[] {new Integer(version)});
|
H A D | TemplateRegistry.java | 78 * @param <i>version</i> Version number of template document. 88 String version) 96 * @param <i>version</i> Version of the template, null for latest. 107 String version) 115 * @param <i>version</i> Version of the template, null for latest. 129 String version) 85 registerServiceTemplate(ServiceType serviceType, String documentURL, Locale languageLocale, String version) argument 105 deregisterServiceTemplate(ServiceType serviceType, Locale languageLocale, String version) argument 127 findTemplateURL(ServiceType serviceType, Locale languageLocale, String version) argument
|
/illumos-gate/usr/src/lib/libsocket/socket/ |
H A D | socket.c | 93 _socket_create(int family, int type, int protocol, int version) argument 107 fd = _so_socket(family, type, protocol, NULL, version); 116 if (version != SOV_XPG4_2) 131 fd = _so_socket(family, type, protocol, devpath, version);
|
H A D | socketpair.c | 88 _socketpair_create(int family, int type, int protocol, int sv[2], int version) argument 97 fd1 = _socket_create(family, type, protocol, version); 100 fd2 = _socket_create(family, type, protocol, version);
|
/illumos-gate/usr/src/lib/libc/amd64/unwind/ |
H A D | thrp_unwind.c | 45 int version, 44 posix_stop_func( int version, _Unwind_Action _Unwind_actions, uint64_t exceptionClass, struct _Unwind_Exception *exceptionObject, struct _Unwind_Context *context, void *func_arg) argument
|
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/ |
H A D | DRM.java | 53 * @param version The version of the protocol. 57 public void connect(int version, String url) throws Exception; argument
|
H A D | LogDRM.java | 48 * Supported protocol version. 50 private final int version = 1; field in class:LogDRM 60 * @param requested The requested version of the protocol. 66 if (requested > version) { 68 "Requested protocol version (" + requested + 73 Poold.CONF_LOG.log(Severity.INFO, "DRM protocol version:" + 74 version + ", server: " + url);
|
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/ |
H A D | pmAboutBox.java | 49 String version = pmUtility.getResource("info_version"); field in class:pmAboutBox 52 version + "\n\n" +
|
/illumos-gate/usr/src/uts/sparc/io/ |
H A D | devfm_machdep.c | 39 uint8_t version; local 48 /* Verify FMRI scheme name and version number */ 51 (nvlist_lookup_uint8(nvl, FM_VERSION, &version) != 0) || 52 version > FM_MEM_SCHEME_VERSION) {
|
/illumos-gate/usr/src/uts/common/rpc/ |
H A D | rpcsys.h | 62 int version; /* initially 1 */ member in struct:krpc_revauth 73 int32_t version; /* initially 1 */ member in struct:krpc_revauth32
|
/illumos-gate/usr/src/uts/common/sys/fibre-channel/fca/oce/ |
H A D | oce_ioctl.h | 48 uint8_t version; member in struct:oce_driver_query
|