Searched refs:ids (Results 1 - 25 of 69) sorted by relevance

123

/openbsd-current/usr.bin/rsync/
H A Dids.c1 /* $OpenBSD: ids.c,v 1.15 2021/06/30 13:10:04 claudio Exp $ */
53 const struct ident *ids, size_t idsz)
63 if ((int32_t)fl[i].st.gid == ids[j].id)
66 fl[i].st.gid = ids[j].mapped;
75 const struct ident *ids, size_t idsz)
85 if ((int32_t)fl[i].st.uid == ids[j].id)
88 fl[i].st.uid = ids[j].mapped;
101 idents_remap(struct sess *sess, int isgid, struct ident *ids, size_t idsz) argument
112 assert(ids[i].id != 0);
118 grp = getgrnam(ids[
52 idents_assign_gid(struct sess *sess, struct flist *fl, size_t flsz, const struct ident *ids, size_t idsz) argument
74 idents_assign_uid(struct sess *sess, struct flist *fl, size_t flsz, const struct ident *ids, size_t idsz) argument
158 idents_add(int isgid, struct ident **ids, size_t *idsz, int32_t id) argument
230 idents_send(struct sess *sess, int fd, const struct ident *ids, size_t idsz) argument
267 idents_recv(struct sess *sess, int fd, struct ident **ids, size_t *idsz) argument
[all...]
H A DMakefile4 SRCS= blocks.c client.c copy.c downloader.c fargs.c flist.c hash.c ids.c \
/openbsd-current/gnu/llvm/clang/lib/ARCMigrate/
H A DTransAPIUses.cpp40 IdentifierTable &ids = Pass.Ctx.Idents; local
41 getReturnValueSel = sels.getUnarySelector(&ids.get("getReturnValue"));
42 setReturnValueSel = sels.getUnarySelector(&ids.get("setReturnValue"));
45 selIds[0] = &ids.get("getArgument");
46 selIds[1] = &ids.get("atIndex");
48 selIds[0] = &ids.get("setArgument");
51 zoneSel = sels.getNullarySelector(&ids.get("zone"));
/openbsd-current/usr.bin/ssh/
H A Dsftp-usergroup.c134 has_id(u_int id, u_int *ids, u_int nids) argument
143 if (ids[i] == id)
152 u_int id, i, n = 0, *ids = NULL; local
164 if (has_id(id, ids, n))
166 ids = xrecallocarray(ids, n, n + 1, sizeof(*ids));
167 ids[n++] = id;
169 *idsp = ids;
191 u_int id, i, n = 0, *ids local
[all...]
/openbsd-current/distrib/special/more/
H A Dtermcap.c187 char ids[3]; local
196 *ids = *id;
197 ids[1] = id[1];
198 ids[2] = '\0';
200 if ((i = cgetstr(tbuf, ids, &s)) < 0)
/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/thread/
H A Dpthread5.cc95 int ids[NTHREADS]; local
110 ids[worker] = worker;
112 thread_function, &ids[worker]))
/openbsd-current/sys/netinet/
H A Dip_ipsp.c111 int ipsec_ids_idle = 100; /* keep free ids for 100s */
438 struct ipsec_ids *ids,
442 if (ids != NULL)
444 !ipsp_ids_match(tdb->tdb_ids, ids))
473 struct ipsec_ids *ids,
488 if (!ipsp_aux_match(tdbp, ids, filter, filtermask))
504 struct ipsec_ids *ids,
519 if (!ipsp_aux_match(tdbp, ids, filter, filtermask))
614 DUMP(ids, "%p");
1236 ipsp_ids_insert(struct ipsec_ids *ids) argument
437 ipsp_aux_match(struct tdb *tdb, struct ipsec_ids *ids, struct sockaddr_encap *pfilter, struct sockaddr_encap *pfiltermask) argument
472 gettdbbydst(u_int rdomain, union sockaddr_union *dst, u_int8_t sproto, struct ipsec_ids *ids, struct sockaddr_encap *filter, struct sockaddr_encap *filtermask) argument
503 gettdbbysrc(u_int rdomain, union sockaddr_union *src, u_int8_t sproto, struct ipsec_ids *ids, struct sockaddr_encap *filter, struct sockaddr_encap *filtermask) argument
1283 struct ipsec_ids *ids; local
1304 struct ipsec_ids *ids, *tids; local
1331 ipsp_ids_free(struct ipsec_ids *ids) argument
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stack_store_test.cpp81 std::vector<StackStore::Id> ids; local
84 ids.push_back(store_.Store(s, &pack));
87 auto id = ids.begin();
99 std::vector<StackStore::Id> ids; local
102 ids.push_back(store_.Store(s, &pack));
145 std::vector<StackStore::Id> ids; local
150 ids.push_back(store_.Store(s, &pack));
167 auto id = ids.begin();
/openbsd-current/gnu/llvm/lldb/source/Plugins/Instruction/PPC64/
H A DEmulateInstructionPPC64.cpp233 int32_t ids = llvm::SignExtend32<16>(ds << 2); local
237 if (ra != gpr_r1_ppc64le || rt != gpr_r1_ppc64le || ids != 0)
241 LLDB_LOG(log, "EmulateLD: {0:X+8}: ld r{1}, {2}(r{3})", m_addr, rt, ids, ra);
277 int32_t ids = llvm::SignExtend32<16>(ds << 2);
280 u ? "u" : "", rs, ids, ra);
304 ctx.SetRegisterToRegisterPlusOffset(*rs_info, *ra_info, ids);
311 lldb::addr_t addr = ra_val + ids;
/openbsd-current/regress/lib/libpthread/pthread_rwlock/
H A Dpthread_rwlock.c125 int ids[NUM_READERS], i, r; local
133 ids[i] = i;
134 if ((r = pthread_create(&tr[i], NULL, reader, &ids[i])))
/openbsd-current/sys/dev/pci/drm/include/linux/
H A Dpci.h505 pci_match_id(const struct pci_device_id *ids, struct pci_dev *pdev) argument
509 for (i = 0; ids[i].vendor != 0; i++) {
510 if ((ids[i].vendor == pdev->vendor) &&
511 (ids[i].device == pdev->device ||
512 ids[i].device == PCI_ANY_ID) &&
513 (ids[i].subvendor == PCI_ANY_ID) &&
514 (ids[i].subdevice == PCI_ANY_ID))
515 return &ids[i];
/openbsd-current/gnu/usr.bin/binutils/bfd/
H A Dirix-core.c193 struct idesc *idg, *idf, *ids; local
247 ids = &coreout.c_idesc[I_SPECREGS];
250 || idf->i_offset + idf->i_len != ids->i_offset)
258 idg->i_len + idf->i_len + ids->i_len,
/openbsd-current/gnu/usr.bin/binutils-2.17/bfd/
H A Dirix-core.c173 struct idesc *idg, *idf, *ids; local
227 ids = &coreout.c_idesc[I_SPECREGS];
230 || idf->i_offset + idf->i_len != ids->i_offset)
238 idg->i_len + idf->i_len + ids->i_len,
/openbsd-current/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbinline.py130 ids = set()
132 ids.add(thread.GetStopReasonDataAtIndex(i))
133 self.assertGreater(len(ids), 0)
134 return sorted(ids)
/openbsd-current/sys/dev/pci/drm/amd/amdgpu/
H A Damdgpu_ids.h69 struct amdgpu_vmid ids[AMDGPU_NUM_VMID]; member in struct:amdgpu_vmid_mgr
H A Damdgpu_ids.c443 job->vmid = id - id_mgr->ids;
512 struct amdgpu_vmid *id = &id_mgr->ids[vmid];
570 amdgpu_sync_create(&id_mgr->ids[j].active);
571 list_add_tail(&id_mgr->ids[j].list, &id_mgr->ids_lru);
597 struct amdgpu_vmid *id = &id_mgr->ids[j];
/openbsd-current/gnu/usr.bin/binutils/binutils/
H A Dresres.c572 res_append_resource (resources, resource, cids, ids, dupok)
576 const struct res_id *ids;
606 if (res_id_cmp ((*pp)->id, ids[i]) == 0)
615 re->id = ids[i];
635 res_ids_print (stderr, i, ids);
647 res_ids_print (stderr, cids, ids);
658 res_ids_print (stderr, cids, ids);
H A Dwindres.c279 res_ids_print (FILE *stream, int cids, const struct res_id *ids)
285 res_id_print (stream, ids[i], 1);
310 const struct res_id *ids, int dupok)
339 if (res_id_cmp ((*pp)->id, ids[i]) == 0)
348 re->id = ids[i];
368 res_ids_print (stderr, i, ids);
380 res_ids_print (stderr, cids, ids);
391 res_ids_print (stderr, cids, ids);
276 res_ids_print(FILE *stream, int cids, const struct res_id *ids) argument
306 define_resource(struct res_directory **resources, int cids, const struct res_id *ids, int dupok) argument
/openbsd-current/gnu/usr.bin/binutils-2.17/binutils/
H A Dresres.c572 res_append_resource (resources, resource, cids, ids, dupok)
576 const struct res_id *ids;
606 if (res_id_cmp ((*pp)->id, ids[i]) == 0)
615 re->id = ids[i];
635 res_ids_print (stderr, i, ids);
647 res_ids_print (stderr, cids, ids);
658 res_ids_print (stderr, cids, ids);
H A Dwindres.c283 res_ids_print (FILE *stream, int cids, const struct res_id *ids)
289 res_id_print (stream, ids[i], 1);
314 const struct res_id *ids, int dupok)
343 if (res_id_cmp ((*pp)->id, ids[i]) == 0)
352 re->id = ids[i];
372 res_ids_print (stderr, i, ids);
384 res_ids_print (stderr, cids, ids);
395 res_ids_print (stderr, cids, ids);
280 res_ids_print(FILE *stream, int cids, const struct res_id *ids) argument
310 define_resource(struct res_directory **resources, int cids, const struct res_id *ids, int dupok) argument
/openbsd-current/sys/dev/pci/drm/i915/
H A Di915_query.c398 u64 *ids; local
402 ids = krealloc(oa_config_ids,
405 if (!ids)
408 ids = kmalloc(n_configs * sizeof(*oa_config_ids),
410 if (!ids)
413 memcpy(ids, oa_config_ids,
420 ids[n_configs++] = 1ull; /* reserved for test_config */
424 ids[n_configs] = id;
429 oa_config_ids = ids;
/openbsd-current/usr.bin/openssl/
H A Docsp.c83 const EVP_MD *cert_id_md, X509 *issuer, STACK_OF(OCSP_CERTID) *ids);
85 const EVP_MD *cert_id_md, X509 *issuer, STACK_OF(OCSP_CERTID) *ids);
87 STACK_OF(OPENSSL_STRING) *names, STACK_OF(OCSP_CERTID) *ids, long nsec,
112 STACK_OF(OCSP_CERTID) *ids;
161 cfg.cert_id_md, cfg.issuer, cfg.ids)) {
288 cfg.issuer, cfg.ids)) {
761 if ((cfg.ids = sk_OCSP_CERTID_new_null()) == NULL)
1034 cfg.ids, cfg.nsec, cfg.maxage))
1057 sk_OCSP_CERTID_free(cfg.ids);
1072 X509 *issuer, STACK_OF(OCSP_CERTID) *ids)
1071 add_ocsp_cert(OCSP_REQUEST **req, X509 *cert, const EVP_MD *cert_id_md, X509 *issuer, STACK_OF(OCSP_CERTID) *ids) argument
1097 add_ocsp_serial(OCSP_REQUEST **req, char *serial, const EVP_MD *cert_id_md, X509 *issuer, STACK_OF(OCSP_CERTID) *ids) argument
1135 print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req, STACK_OF(OPENSSL_STRING) *names, STACK_OF(OCSP_CERTID) *ids, long nsec, long maxage) argument
[all...]
/openbsd-current/sys/dev/pci/drm/radeon/
H A Dradeon_vm.c182 struct radeon_vm_id *vm_id = &vm->ids[ring];
242 struct radeon_vm_id *vm_id = &vm->ids[ring];
247 trace_radeon_vm_flush(pd_addr, ring, vm->ids[ring].id);
273 unsigned vm_id = vm->ids[fence->ring].id;
278 radeon_fence_unref(&vm->ids[fence->ring].last_id_use);
279 vm->ids[fence->ring].last_id_use = radeon_fence_ref(fence);
1008 radeon_sync_fence(&ib.sync, vm->ids[i].last_id_use);
1182 vm->ids[i].id = 0;
1183 vm->ids[i].flushed_updates = NULL;
1184 vm->ids[
[all...]
/openbsd-current/gnu/usr.bin/perl/regen/
H A Dmk_PL_charclass.pl215 my @ids = expand_invlist(\@alpha_invlist);
216 push @ids, ord "_";
217 return sort { $a <=> $b } uniques @ids;
/openbsd-current/sys/dev/tc/
H A Dtcds.c538 u_int32_t ids; local
554 ids = bus_space_read_4(sc->sc_bst, sc->sc_bsh, TCDS_EEPROM_IDS);
556 ids >>= 4;
558 id = ids & 0x7;
559 fast = ids & 0x8;

Completed in 180 milliseconds

123