| /titanic_54/usr/src/lib/efcode/packages/ |
| H A D | populate.c | 134 char *method, *path; in builtin_driver_method_hook() local 148 method = pop_a_string(env, NULL); in builtin_driver_method_hook() 154 if ((path = search_for_fcode_file(env, method)) != NULL) { in builtin_driver_method_hook() 156 method, path); in builtin_driver_method_hook() 167 fc_ptr2cell(method), &len); in builtin_driver_method_hook() 171 func_name, method); in builtin_driver_method_hook() 172 push_a_string(env, method); in builtin_driver_method_hook() 177 func_name, method, (int)len); in builtin_driver_method_hook() 181 dropin_name = STRDUP(method); in builtin_driver_method_hook() 239 char *method, *path, *buf; in exec_builtin_driver() local [all …]
|
| /titanic_54/usr/src/contrib/ast/src/lib/libsum/ |
| H A D | sum-lmd.c | 124 md4_open(const Method_t* method, const char* name) in md4_open() argument 130 lmd->method = (Method_t*)method; in md4_open() 164 md5_open(const Method_t* method, const char* name) in md5_open() argument 170 lmd->method = (Method_t*)method; in md5_open() 205 sha1_open(const Method_t* method, const char* name) in sha1_open() argument 211 lmd->method = (Method_t*)method; in sha1_open() 245 sha256_open(const Method_t* method, const char* name) in sha256_open() argument 251 lmd->method = (Method_t*)method; in sha256_open() 279 sha384_open(const Method_t* method, const char* name) in sha384_open() argument 285 lmd->method = (Method_t*)method; in sha384_open() [all …]
|
| H A D | sumlib.c | 31 struct Method_s* method; \ 80 long_open(const Method_t* method, const char* name) in long_open() argument 86 p->method = (Method_t*)method; in long_open() 130 if ((flags & SUM_SCALE) && ((n = scale) || (n = x->method->scale))) in long_print() 300 return (*p->method->init)(p); in suminit() 311 return (*p->method->block)(p, buf, siz); in sumblock() 323 return (*p->method->done)(p); in sumdone() 333 return (*p->method->print)(p, sp, flags, scale); in sumprint() 343 return (*p->method->data)(p, d); in sumdata()
|
| /titanic_54/usr/src/cmd/cmd-inet/usr.lib/inetd/ |
| H A D | env.c | 38 valid_env_var(const char *var, const char *instance, const char *method) in valid_env_var() argument 43 if (method == NULL) in valid_env_var() 46 "method %s of instance %s.\n"), var, method, instance); in valid_env_var() 49 if (method == NULL) in valid_env_var() 53 var, method, instance); in valid_env_var() 61 find_dup(const char *var, char **env, const char *instance, const char *method) in find_dup() argument 78 "for method %s of instance %s.\n"), *p, method, instance); in find_dup() 100 const char *method) in set_smf_env() argument 133 *np = uu_msprintf("SMF_METHOD=%s", method); in set_smf_env() 156 if (!valid_env_var(*p, instance->fmri, method)) in set_smf_env() [all …]
|
| H A D | inetd.c | 244 exec_method(instance_t *instance, instance_method_t method, method_info_t *mi, 1267 get_method_state(instance_method_t method) in get_method_state() argument 1272 if (sip->method_running == method) in get_method_state() 2659 passes_basic_exec_checks(const char *instance, const char *method, in passes_basic_exec_checks() argument 2669 method, instance, strerror(errno)); in passes_basic_exec_checks() 2681 method, instance); in passes_basic_exec_checks() 2685 "any execute permissions set"), method, instance); in passes_basic_exec_checks() 2693 exec_method(instance_t *instance, instance_method_t method, method_info_t *mi, in exec_method() argument 2703 if (method == IM_START) { in exec_method() 2731 if ((method == IM_START) && in exec_method() [all …]
|
| H A D | wait.c | 53 instance_method_t method; /* the method type running */ member 160 methods[mp->method].name, mp->inst->fmri); in method_timeout() 164 if (mp->method == IM_START) { in method_timeout() 217 me->method = mthd; in register_method() 394 methods[me->method].name, me->inst->fmri, in process_terminated_methods() 400 remove_method_ids(me->inst, me->pid, me->cid, me->method); in process_terminated_methods() 403 if (me->method != IM_START) { in process_terminated_methods()
|
| /titanic_54/usr/src/lib/print/libhttp-core/common/ |
| H A D | http-support.c | 67 char *method, /* O - Method [32] (http, https, etc.) */ in httpSeparate() argument 73 httpSeparate2(uri, method, 32, username, HTTP_MAX_URI, host, HTTP_MAX_URI, in httpSeparate() 85 char *method, /* O - Method (http, https, etc.) */ in httpSeparate2() argument 104 if (uri == NULL || method == NULL || username == NULL || host == NULL || in httpSeparate2() 118 strlcpy(method, "ipp", methodlen); in httpSeparate2() 160 strlcpy(method, "http", methodlen); in httpSeparate2() 165 strlcpy(method, host, methodlen); in httpSeparate2() 210 if (strcasecmp(method, "http") == 0) in httpSeparate2() 212 else if (strcasecmp(method, "https") == 0) in httpSeparate2() 214 else if (strcasecmp(method, "ipp") == 0) in httpSeparate2() [all …]
|
| /titanic_54/usr/src/common/crypto/padding/ |
| H A D | pkcs1.c | 64 pkcs1_encode(int method, uint8_t *databuf, size_t datalen, uint8_t *padbuf, in pkcs1_encode() argument 78 padbuf[1] = (method == PKCS1_ENCRYPT) ? 0x02 : 0x01; in pkcs1_encode() 80 if (method == PKCS1_ENCRYPT) { in pkcs1_encode() 87 } else if (method == PKCS1_SIGN) { in pkcs1_encode() 118 pkcs1_decode(int method, uint8_t *padbuf, size_t *plen) in pkcs1_decode() argument 120 int rv = ((method == PKCS1_DECRYPT) ? CKR_ENCRYPTED_DATA_INVALID : in pkcs1_decode() 125 if (padbuf[0] != 0x00 || padbuf[1] != (method == PKCS1_DECRYPT ? in pkcs1_decode() 140 } else if (method == PKCS1_VERIFY && padbuf[i] != 0xFF) { in pkcs1_decode()
|
| /titanic_54/usr/src/common/ficl/softcore/ |
| H A D | oo.fr | 27 \ access method 37 \ The NEW method creates and initializes an instance of a class. 52 \ has an extra field for the vtable method count. Hasvtable declares 55 \ Revised Nov 2001 - metaclass debug method now finds only metaclass methods 59 \ END-CLASS allocates and clears the vtable - then it walks class's method 60 \ list and inserts all new methods into table. For each method, if the table 61 \ slot is already nonzero, do nothing (overridden method). Otherwise fill 70 \ : is redefined to check for override, fill in vtable index, increment method 84 \ Compile the method name, and code to find and 89 \ compiles a method name so that it pushes [all …]
|
| /titanic_54/usr/src/uts/sun4u/sys/ |
| H A D | ppm_plat.h | 38 if (dc->method == PPMDC_I2CKIO) \ 40 else if (dc->method == PPMDC_KIO) \ 45 if (dc->method == PPMDC_I2CKIO) \ 47 else if (dc->method == PPMDC_KIO) \
|
| /titanic_54/usr/src/lib/libsip/common/ |
| H A D | sip_xaction.c | 59 sip_method_t method) in sip_find_md5_digest() argument 100 (char *)&method, sizeof (sip_method_t), in sip_find_md5_digest() 104 sip_md5_hash(bid, strlen(bid), (char *)&method, in sip_find_md5_digest() 299 sip_method_t method; in sip_xaction_find() local 304 method = sip_get_callseq_method((sip_msg_t)msg, &error); in sip_xaction_find() 313 (method == ACK || method == CANCEL)) { in sip_xaction_find() 314 method = INVITE; in sip_xaction_find() 316 if (sip_find_md5_digest(branchid, msg, hash_index, method) != 0) in sip_xaction_find() 335 sip_method_t method; in sip_xaction_create() local 381 method = sip_msg_info->sip_req_method; in sip_xaction_create() [all …]
|
| H A D | sip_dialog.c | 619 sip_method_t method; in sip_seed_dialog() local 626 method = sip_get_request_method((sip_msg_t)sip_msg, &error); in sip_seed_dialog() 630 if (error != 0 || (method != INVITE && method != SUBSCRIBE)) in sip_seed_dialog() 649 if (method == SUBSCRIBE) in sip_seed_dialog() 653 (method == SUBSCRIBE && evhdr == NULL)) { in sip_seed_dialog() 718 if (method == SUBSCRIBE) { in sip_seed_dialog() 741 dialog->sip_dlg_method = method; in sip_seed_dialog() 869 sip_method_t method; in sip_complete_dialog() local 875 method = sip_get_request_method((sip_msg_t)sip_msg, &error); in sip_complete_dialog() 877 method = sip_get_callseq_method((sip_msg_t)sip_msg, &error); in sip_complete_dialog() [all …]
|
| /titanic_54/usr/src/cmd/svc/milestone/ |
| H A D | README.share | 45 # /lib/svc/method/example-method start 48 the commands from the service method as they are executed. For sh(1) 49 based scripts, this would mean running the method as 51 # /sbin/sh -x /lib/svc/method/example-method start 55 # /usr/bin/ksh -x /lib/svc/method/example-method start 57 The first line of the service method script will generally specify its 83 # /lib/svc/method/fs-root 84 # /lib/svc/method/fs-usr 85 # /lib/svc/method/fs-minimal 91 /lib/svc/method/fs-usr attempts to remount the root file system [all …]
|
| /titanic_54/usr/src/cmd/svc/startd/ |
| H A D | method.c | 445 exec_method(const restarter_inst_t *inst, int type, const char *method, in exec_method() argument 453 cmd = uu_msprintf("exec %s", method); in exec_method() 460 method_names[type], method); in exec_method() 658 char *method; in method_run() local 720 if ((method = libscf_get_method(h, type, inst, snap, &restart_on, in method_run() 771 if (restarter_is_null_method(method)) { in method_run() 783 sig = restarter_is_kill_method(method); in method_run() 811 inst->ri_i.i_fmri, method); in method_run() 814 inst->ri_m_inst, snap, mname, method, &mcp); in method_run() 851 if ((pend = strchr(method, ' ')) != NULL) in method_run() [all …]
|
| /titanic_54/usr/src/lib/libslp/clib/ |
| H A D | slp_jni_support.c | 88 jmethodID method; in JNU_GetStringNativeChars() local 117 method = (*env)->GetMethodID( in JNU_GetStringNativeChars() 128 if (method != NULL) { in JNU_GetStringNativeChars() 133 bytes = (*env)->CallObjectMethod(env, jstr, method); in JNU_GetStringNativeChars()
|
| /titanic_54/usr/src/psm/stand/bootblks/common/ |
| H A D | util.fth | 99 : find-cif-method ( adr,len -- acf ) 100 2dup cif-ph find-method 0= if ( adr,len ) 106 " open" find-cif-method to cif-open 107 " close" find-cif-method to cif-close 108 " read" find-cif-method to cif-read 109 " seek" find-cif-method to cif-seek 110 " release" find-cif-method to cif-release 143 " claim" mmu-ih $call-method 147 -1 " map" mmu-ih $call-method 151 " claim" mem-ih $call-method
|
| /titanic_54/usr/src/uts/sun4u/io/ |
| H A D | ppm_plat.c | 57 switch (dc->method) { in ppm_cpu_next() 67 str, dc->method)) in ppm_cpu_next() 90 switch (dc->method) { in ppm_cpu_pre_chng() 111 str, dc->method)) in ppm_cpu_pre_chng() 133 switch (dc->method) { in ppm_cpu_go() 162 switch (dc->method) { in ppm_cpu_post_chng() 183 str, dc->method)) in ppm_cpu_post_chng()
|
| /titanic_54/usr/src/psm/promif/ieee1275/common/ |
| H A D | prom_test.c | 53 prom_test_method(char *method, pnode_t node) in prom_test_method() argument 64 ci[4] = p1275_ptr2cell(method); in prom_test_method() 74 method, node, (void *)&rv); in prom_test_method()
|
| /titanic_54/usr/src/uts/common/io/scsi/adapters/iscsi/ |
| H A D | iscsid.c | 62 static boolean_t iscsid_add(iscsi_hba_t *ihp, iSCSIDiscoveryMethod_t method, 87 iSCSIDiscoveryMethod_t method; member 428 for (dt = &iscsid_thr[0]; dt->method != iSCSIDiscoveryMethodUnknown; in iscsid_enable_discovery() 430 if (idm & dt->method) { in iscsid_enable_discovery() 467 for (dt = &iscsid_thr[0]; dt->method != iSCSIDiscoveryMethodUnknown; in iscsid_disable_discovery() 469 if (idm & dt->method) { in iscsid_disable_discovery() 472 iscsi_discovery_event(ihp, dt->method, B_TRUE); in iscsid_disable_discovery() 475 rval = iscsid_del(ihp, NULL, dt->method, NULL); in iscsid_disable_discovery() 486 dt->method, B_FALSE); in iscsid_disable_discovery() 501 iscsi_discovery_event(ihp, dt->method, B_FALSE); in iscsid_disable_discovery() [all …]
|
| /titanic_54/usr/src/cmd/cmd-inet/usr.bin/nca/ |
| H A D | ncab2clf.c | 170 valid_method(int method) in valid_method() argument 172 switch (method) { in valid_method() 195 http_method(int method) in http_method() argument 197 if (method < sizeof (g_method_strings) / sizeof (g_method_strings[0])) in http_method() 198 return ((char *)(g_method_strings[method])); in http_method() 587 char *method; in b2clf_buf() local 623 if ((! valid_method((int)r->method)) || in b2clf_buf() 629 method = http_method((int)r->method); in b2clf_buf() 652 method, in b2clf_buf()
|
| /titanic_54/usr/src/lib/efcode/fcdriver/ |
| H A D | get_req.c | 191 char *method; in exec_fcode_builtin_method() local 195 method = (char *)DS[-1]; in exec_fcode_builtin_method() 200 method, (char *)DS[-1]); in exec_fcode_builtin_method() 206 method); in exec_fcode_builtin_method() 215 char *method, *fc_name, *path; in get_fcode_from_filesystem() local 219 method = (char *)DS[-1]; in get_fcode_from_filesystem() 225 method, fc_name); in get_fcode_from_filesystem() 238 fname, method); in get_fcode_from_filesystem()
|
| /titanic_54/usr/src/contrib/ast/src/lib/libast/aso/ |
| H A D | aso.c | 141 static Asometh_t* method[] = 197 return method[0]; 198 for (i = 0; i < elementsof(method) - 1; i++) 199 if (meth == method[i]) 200 return method[i+1]; 205 for (i = 0; i < elementsof(method); i++) 206 if (method[i]->type & type) 208 method[i]->details = (char*)data; 209 return method[i]; 216 for (i = 0; i < elementsof(method); i++) [all …]
|
| /titanic_54/usr/src/uts/sun/io/ttymux/ |
| H A D | ttymux_ioctl.c | 1124 enum ttymux_break_type method; in ttymux_abort_ioctl() member 1129 enum ttymux_break_type method; in ttymux_abort_ioctl() local 1189 method = abreq32->method; in ttymux_abort_ioctl() 1201 method = abreq->ttymux_method; in ttymux_abort_ioctl() 1212 method, enable, getmajor(ldev), getminor(ldev))); in ttymux_abort_ioctl() 1222 method = SOFTHARD_BREAK; in ttymux_abort_ioctl() 1227 method = SOFTWARE_BREAK; in ttymux_abort_ioctl() 1229 method = HARDWARE_BREAK; in ttymux_abort_ioctl() 1231 method = SOFTHARD_BREAK; in ttymux_abort_ioctl() 1236 abreq32->method = method; in ttymux_abort_ioctl() [all …]
|
| /titanic_54/usr/src/lib/libgss/ |
| H A D | README.spi | 52 method; 59 and every mechanism method that isn't part of the old gss_config 60 struct -- this happens only once per-method, of course; the 88 functions won't have a corresponding SPI method, such as 101 Solaris native mechanisms may still provide the mechanism method 105 Mechanisms that do not provide the old method registration function 109 GSS_Indicate_mechs() method and will call it to discover the 112 - libgss will dlsym() each mechanism provider SPI method.
|
| /titanic_54/usr/src/cmd/ldap/common/ |
| H A D | ldaptest.c | 259 int i, c, port, cldapflg, errflg, method, id, in main() local 438 method = atoi( line ) | 0x80; in main() 440 method = LDAP_AUTH_SIMPLE; in main() 445 if ( method == LDAP_AUTH_SIMPLE && dn[0] != '\0' ) in main() 451 if ( ldap_bind( ld, dn, passwd, method ) == -1 ) { in main() 464 method = atoi( line ); in main() 465 if ( method == 3 ) in main() 466 method = LDAP_AUTH_KRBV4; in main() 468 method = method | 0x80; in main() 472 method = atoi (line); in main() [all …]
|