Searched refs:stub (Results 1 - 25 of 39) sorted by relevance

12

/freebsd-11-stable/stand/efi/boot1/
H A Dgenerate-fat.sh46 mkdir stub
47 mount -t msdosfs /dev/$DEVICE stub
50 mkdir -p stub/efi/boot
53 echo 'Boot1 START' | dd of=stub/efi/boot/$FILENAME cbs=$BOOT1_SIZE count=1 conv=block
55 echo $FILENAME > stub/efi/boot/startup.nsh
57 umount stub
59 rmdir stub
/freebsd-11-stable/usr.sbin/crunch/crunchgen/
H A Dcrunched_main.c42 struct stub { struct
48 extern struct stub entry_points[];
54 struct stub *ep;
78 struct stub *ep;
94 struct stub *ep;
111 struct stub *ep;
/freebsd-11-stable/tools/tools/bootparttest/
H A DMakefile10 SRCS= bootparttest.c crc32.c stub.c part.c disk.c
/freebsd-11-stable/sys/contrib/ck/include/
H A Dck_hp_fifo.h60 ck_hp_fifo_init(struct ck_hp_fifo *fifo, struct ck_hp_fifo_entry *stub) argument
63 fifo->head = fifo->tail = stub;
64 stub->next = NULL;
69 ck_hp_fifo_deinit(struct ck_hp_fifo *fifo, struct ck_hp_fifo_entry **stub) argument
72 *stub = fifo->head;
H A Dck_fifo.h103 ck_fifo_spsc_init(struct ck_fifo_spsc *fifo, struct ck_fifo_spsc_entry *stub) argument
109 stub->next = NULL;
110 fifo->head = fifo->tail = fifo->head_snapshot = fifo->garbage = stub;
132 /* If stub->next is visible, guarantee that entry is consistent. */
145 * The head pointer is guaranteed to always point to a stub entry.
146 * If the stub entry does not point to an entry, then the queue is
225 ck_fifo_mpmc_init(struct ck_fifo_mpmc *fifo, struct ck_fifo_mpmc_entry *stub) argument
228 stub->next.pointer = NULL;
229 stub->next.generation = NULL;
230 fifo->head.pointer = fifo->tail.pointer = stub;
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DStubsPass.cpp10 // atoms to instead have a reference to a stub (PLT entry) for the specified
238 // through a stub.
293 auto *stub = new (_file.allocator()) StubAtom(_file, _stubInfo); variable
298 addReference(stub, _stubInfo.stubReferenceToLP, lp);
299 addOptReference(stub, _stubInfo.stubReferenceToLP,
309 mergedFile.addAtom(*stub);
313 // Update each reference to use stub.
316 // Switch call site to reference stub atom instead.
317 const_cast<Reference *>(ref)->setTarget(stub); variable
/freebsd-11-stable/stand/i386/btx/btxldr/
H A Dbtxldr.S31 .set MEM_STUB,0x600 # Real mode stub
63 .set SIZ_STUB,0x1a # Size of stub
240 movl $start.8,%esi # Real mode stub
/freebsd-11-stable/contrib/unbound/iterator/
H A Diter_utils.c1395 struct iter_hints_stub *stub; local
1398 /* Check for stub. */
1399 stub = hints_lookup_stub(qstate->env->hints, qinf->qname,
1403 /* see if forward or stub is more pertinent */
1404 if(stub && stub->dp && dp) {
1406 stub->dp->name, stub->dp->namelabs)) {
1407 stub = NULL; /* ignore stub, forwar
[all...]
H A Diter_hints.c2 * iterator/iter_hints.c - iterative resolver module stub and root hints.
40 * Keep track of stub and root hints, and read those from config.
190 /** set stub name */
198 log_err("stub zone without a name");
203 log_err("cannot parse stub zone name %s", s->name);
215 /** set stub host names */
226 log_err("cannot parse stub %s nameserver name: '%s'",
240 /** set stub server addresses */
251 log_err("cannot parse stub %s ip address: '%s'",
282 /* the flag is turned off for 'stub
463 struct iter_hints_stub *stub; local
[all...]
H A Diterator.c594 struct iter_hints_stub* stub; local
596 /* do not process a last resort (the parent side) if a stub
599 if(!dname_is_root(nm) && (stub = (struct iter_hints_stub*)
603 stub->dp->has_parent_side_NS) {
604 if(retdp) *retdp = stub->dp;
824 * Generate and process a stub priming request. This method tests for the
825 * need to prime a stub zone, so it is safe to call for every request.
833 * issue a priming request if it detects an unprimed stub.
834 * Uses value of 2 to signal during stub-prime in root-prime situation
835 * that a noprime-stub i
843 struct iter_hints_stub* stub; local
1620 struct iter_hints_stub* stub; local
[all...]
/freebsd-11-stable/stand/pc98/btx/btxldr/
H A Dbtxldr.S28 .set MEM_STUB,0x600 # Real mode stub
59 .set SIZ_STUB,0x1a # Size of stub
262 movl $start.8,%esi # Real mode stub
/freebsd-11-stable/contrib/binutils/bfd/
H A Delf32-spu.c260 /* The stub hash table. */
264 asection *stub; member in struct:spu_link_hash_table
307 /* Destination of this stub. */
311 /* Offset of entry in stub section. */
314 /* Offset from this stub to stub that loads the overlay index. */
318 /* Create an entry in a spu stub hash table. */
368 /* Init the stub hash table too. */
373 memset (&htab->stub, 0,
374 sizeof (*htab) - offsetof (struct spu_link_hash_table, stub));
850 spu_elf_size_stubs(bfd *output_bfd, struct bfd_link_info *info, int non_overlay_stubs, int stack_analysis, asection **stub, asection **ovtab, asection **toe) argument
[all...]
H A Delf32-ppc.c1927 /* Return address for Ith PLT stub in section PLT, for relocation REL
2379 /* .glink stub offset. */
4512 const char *stub;
4516 stub = ".plt_pic32.";
4518 stub = ".plt_call32.";
4521 len2 = strlen (stub);
4531 memcpy (name + 8 + len3, stub, len2);
5588 const int *stub;
5615 stub = shared_stub_entry;
5620 stub
4500 const char *stub; local
5575 const int *stub; local
[all...]
/freebsd-11-stable/contrib/gcc/config/rs6000/
H A Ddarwin-tramp.asm108 bl L_abort$stub
112 L_abort$stub:
/freebsd-11-stable/contrib/sqlite3/tea/
H A DMakefile.in370 stub=`echo $$p|sed -e "s/.*\(stub\).*/\1/"`; \
371 if test "x$$stub" = "xstub"; then \
/freebsd-11-stable/lib/libutil/
H A DMakefile21 realhostname.c stub.c trimdomain.c uucplock.c
/freebsd-11-stable/libexec/rtld-elf/amd64/
H A Delf_rtld.x50 *(.stub)
/freebsd-11-stable/libexec/rtld-elf/i386/
H A Delf_rtld.x50 *(.stub)
/freebsd-11-stable/contrib/unbound/daemon/
H A Dcachedump.c826 struct iter_hints_stub* stub; local
878 stub = hints_lookup_stub(worker->env.hints, nm, qinfo.qclass,
880 if(stub) {
881 if(stub->noprime) {
882 if(!ssl_printf(ssl, "The noprime stub servers "
886 if(!ssl_printf(ssl, "The stub is primed "
890 print_dp_main(ssl, stub->dp, NULL);
891 print_dp_details(ssl, worker, stub->dp);
/freebsd-11-stable/contrib/gcc/config/ia64/
H A Dcrtend.asm54 * we cannot allow the linker to insert a stub at the end of this
H A Dcrtbegin.asm82 * we cannot allow the linker to insert a stub at the end of this
/freebsd-11-stable/gnu/usr.bin/cc/cc_int/
H A DMakefile89 C_OBJS = c-lang.o stub-objc.o $(C_AND_OBJC_OBJS)
91 # Put objC stub objects in library. objc frontend will override it
94 OBJS-dummy= stub-objc.o dummy-checksum.o
/freebsd-11-stable/contrib/unbound/contrib/
H A Dunbound.spec22 DNSSEC (secure DNS) validation and stub-resolvers (that do not run
/freebsd-11-stable/contrib/gcc/config/
H A Ddarwin.c331 /* The suffix attached to stub symbols. */
332 #define STUB_SUFFIX "$stub"
338 /* The name of the stub or non-lazy pointer. */
340 /* True iff this entry is for a stub (as opposed to a non-lazy
343 /* True iff this stub or pointer pointer has been referenced. */
347 /* A table mapping stub names and non-lazy pointer names to
372 stub (if STUB_B is true) corresponding to the given name. */
429 /* Construct the name of the non-lazy pointer or stub. */
457 /* Return the name of the stub for the mcount function. */
466 /* If NAME is the name of a stub o
949 char *stub; local
[all...]
/freebsd-11-stable/contrib/sqlite3/tea/win/
H A Dmakefile.vc172 STUBPREFIX = $(PROJECT)stub

Completed in 187 milliseconds

12