Home
last modified time | relevance | path

Searched refs:kf (Results 1 – 10 of 10) sorted by relevance

/illumos-gate/usr/src/lib/krb5/kdb/
H A Dkdb_default.c148 FILE *kf; local
171 if (!(kf = fopen(keyfile, "wbF")))
173 if (!(kf = fopen(keyfile, "wF")))
187 2, 1, kf) != 1) ||
189 sizeof(key->length), 1, kf) != 1) ||
192 kf) != key->length)) {
194 (void) fclose(kf);
196 if (fclose(kf) == EOF)
216 FILE *kf = NULL; in krb5_db_def_fetch_mkey() local
247 sizeof(key->length), 1, kf) != 1) { in krb5_db_def_fetch_mkey()
[all …]
/illumos-gate/usr/src/uts/common/io/scsi/impl/
H A Dscsi_resource.c281 int kf; in scsi_init_cache_pkt() local
284 kf = KM_SLEEP; in scsi_init_cache_pkt()
286 kf = KM_NOSLEEP; in scsi_init_cache_pkt()
319 kf); in scsi_init_cache_pkt()
351 in_pktp->pkt_cdbp = kmem_alloc(cmdlen, kf); in scsi_init_cache_pkt()
358 in_pktp->pkt_private = kmem_alloc(pplen, kf); in scsi_init_cache_pkt()
366 in_pktp->pkt_scbp = kmem_alloc(statuslen, kf); in scsi_init_cache_pkt()
/illumos-gate/usr/src/uts/common/io/scsi/adapters/smartpqi/
H A Dsmartpqi_hba.c54 static int cmd_ext_alloc(pqi_cmd_t *cmd, int kf);
456 int kf = (callback == SLEEP_FUNC) ? KM_SLEEP : KM_NOSLEEP; in pqi_init_pkt() local
470 if ((cmd = kmem_cache_alloc(s->s_cmd_cache, kf)) == NULL) in pqi_init_pkt()
503 if (cmd_ext_alloc(cmd, kf) != DDI_SUCCESS) { in pqi_init_pkt()
1178 cmd_ext_alloc(pqi_cmd_t *cmd, int kf) argument
1184 if ((buf = kmem_zalloc(cmd->pc_cmdlen, kf)) == NULL)
1191 if ((buf = kmem_zalloc(cmd->pc_statuslen, kf)) == NULL)
1198 if ((buf = kmem_zalloc(cmd->pc_tgtlen, kf)) == NULL)
/illumos-gate/usr/src/uts/common/io/1394/targets/scsa1394/
H A Dhba.c1285 int kf = (callback == SLEEP_FUNC) ? KM_SLEEP : KM_NOSLEEP; in scsa1394_scsi_init_pkt() local
1320 if (scsa1394_cmd_ext_alloc(sp, cmd, kf) != in scsa1394_scsi_init_pkt()
1442 if ((buf = kmem_zalloc(cmd->sc_cdb_len, kf)) == NULL) { in scsa1394_cmd_ext_alloc()
1450 if ((buf = kmem_zalloc(cmd->sc_scb_len, kf)) == NULL) { in scsa1394_cmd_ext_alloc()
1459 if ((buf = kmem_zalloc(cmd->sc_priv_len, kf)) == NULL) { in scsa1394_cmd_ext_alloc()
1606 if (scsa1394_cmd_dmac2seg(sp, cmd, &dmac, ccount, kf) != in scsa1394_cmd_buf_dma_alloc()
1653 ddi_dma_cookie_t *dmac, uint_t ccount, int kf) in scsa1394_cmd_dmac2seg() argument
1683 sizeof (scsa1394_cmd_seg_t), kf)) == NULL) { in scsa1394_cmd_dmac2seg()
1703 sizeof (scsa1394_cmd_seg_t), kf)) == NULL) { in scsa1394_cmd_dmac2seg()
2654 int kf) in scsa1394_kmem_realloc() argument
[all …]
/illumos-gate/usr/src/uts/sun/io/scsi/adapters/
H A Dfas.c209 int cmdlen, int tgtlen, int statuslen, int kf);
2067 int kf; in fas_scsi_init_pkt() local
2085 kf = (callback == SLEEP_FUNC)? KM_SLEEP: KM_NOSLEEP; in fas_scsi_init_pkt()
2090 cmd = kmem_cache_alloc(fas->f_kmem_cache, kf); in fas_scsi_init_pkt()
2127 cmdlen, tgtlen, statuslen, kf); in fas_scsi_init_pkt()
2268 int cmdlen, int tgtlen, int statuslen, int kf) in fas_pkt_alloc_extern() argument
2275 if ((cdbp = kmem_zalloc((size_t)cmdlen, kf)) == NULL) { in fas_pkt_alloc_extern()
2283 if ((tgt = kmem_zalloc(tgtlen, kf)) == NULL) { in fas_pkt_alloc_extern()
2291 if ((scbp = kmem_zalloc((size_t)statuslen, kf)) == NULL) { in fas_pkt_alloc_extern()
/illumos-gate/usr/src/uts/common/io/scsi/adapters/mpt_sas/
H A Dmptsas.c296 int cmdlen, int tgtlen, int statuslen, int kf);
3709 int kf; in mptsas_scsi_init_pkt() local
3711 kf = (callback == SLEEP_FUNC)? KM_SLEEP: KM_NOSLEEP; in mptsas_scsi_init_pkt()
3741 cmd = kmem_cache_alloc(mpt->m_kmem_cache, kf); in mptsas_scsi_init_pkt()
3791 cmdlen, tgtlen, statuslen, kf); in mptsas_scsi_init_pkt()
3988 cmd->cmd_cookiec), kf); in mptsas_scsi_init_pkt()
4253 i = (kf == KM_SLEEP ? rmalloc_wait : rmalloc) in mptsas_cmdarqsize()
4278 int cmdlen, int tgtlen, int statuslen, int kf) in mptsas_pkt_alloc_extern() argument
4284 (void *)cmd, cmdlen, tgtlen, statuslen, kf)); in mptsas_pkt_alloc_extern()
4298 if ((tgt = kmem_zalloc((size_t)tgtlen, kf)) == NULL) { in mptsas_pkt_alloc_extern()
[all …]
/illumos-gate/usr/src/uts/common/io/aac/
H A Daac.c5142 int kf = (cb == SLEEP_FUNC) ? KM_SLEEP : KM_NOSLEEP; in aac_cmd_dma_alloc() local
5302 acp->left_cookien, kf); in aac_cmd_dma_alloc()
/illumos-gate/usr/src/uts/common/io/fibre-channel/ulp/
H A Dfcp.c11383 int kf; in fcp_pkt_setup() local
11402 kf = (callback == SLEEP_FUNC) ? KM_SLEEP: KM_NOSLEEP; in fcp_pkt_setup()
11431 if (fc_ulp_init_packet(pptr->port_fp_handle, fpkt, kf) in fcp_pkt_setup()
/illumos-gate/usr/src/data/terminfo/
H A Dtermcap.src9778 # bezel buttons for the 5430/pt505 terminal. The "kf" designations do
9830 # "kf" functions adds carriage return to output string if terminal is in
H A Dterminfo.src11102 # bezel buttons for the 5430/pt505 terminal. The "kf" designations do
11154 # "kf" functions adds carriage return to output string if terminal is in