Searched refs:prefix (Results 1 – 25 of 89) sorted by relevance
1234
/xen/m4/ |
A D | paths.m4 | 3 test "x$prefix" = "xNONE" && prefix=$ac_default_prefix 4 test "x$exec_prefix" = "xNONE" && exec_prefix=${prefix} 8 dnl if they come from a different --prefix=. 9 if test "$localstatedir" = '${prefix}/var' ; then 19 if test "x$sysconfdir" = 'x${prefix}/etc' ; then 22 sysconfdir=$prefix/etc 25 if test "$prefix" = "/usr" ; then 28 sysconfdir=$prefix/etc 89 [debugdir_path=$prefix/lib/debug]) 128 SHAREDIR=$prefix/share
|
A D | systemd.m4 | 55 dnl to properly ${prefix} for child variables in 58 dnl from prefix in practice. We provide our own definition as we 65 …dnl SYSTEMD_DIR="`$PKG_CONFIG --define-variable=prefix=$PREFIX --variable=systemdsystemunitdir sys… 66 SYSTEMD_DIR="\$(prefix)/lib/systemd/system/" 75 SYSTEMD_MODULES_LOAD="\$(prefix)/lib/modules-load.d/"
|
/xen/xen/include/public/io/ |
A D | netif.h | 307 uint64_t prefix = 0; in xen_netif_toeplitz_hash() local 312 prefix <<= 8; in xen_netif_toeplitz_hash() 313 prefix |= (keyi < keylen) ? key[keyi] : 0; in xen_netif_toeplitz_hash() 322 hash ^= prefix; in xen_netif_toeplitz_hash() 323 prefix <<= 1; in xen_netif_toeplitz_hash() 331 prefix |= (keyi < keylen) ? key[keyi] : 0; in xen_netif_toeplitz_hash()
|
/xen/tools/xl/ |
A D | xl_parse.h | 40 int match_option_size(const char *prefix, size_t len, 42 #define MATCH_OPTION(prefix, arg, oparg) \ argument 43 match_option_size((prefix "="), sizeof((prefix)), (arg), &(oparg))
|
/xen/tools/xcutils/ |
A D | readnotes.c | 63 static void print_string_note(const char *prefix, struct elf_binary *elf, in print_string_note() argument 66 printf("%s: %s\n", prefix, elf_strfmt(elf, elf_note_desc(elf, note))); in print_string_note() 69 static void print_numeric_note(const char *prefix, struct elf_binary *elf, in print_numeric_note() argument 76 prefix, 2+2*descsz, value, descsz); in print_numeric_note() 79 static void print_l1_mfn_valid_note(const char *prefix, struct elf_binary *elf, in print_l1_mfn_valid_note() argument 89 printf("%s: mask=%#"PRIx64" value=%#"PRIx64"\n", prefix, in print_l1_mfn_valid_note() 94 printf("%s: mask=%#"PRIx32" value=%#"PRIx32"\n", prefix, in print_l1_mfn_valid_note()
|
/xen/tools/libs/toollog/ |
A D | xentoollog.pc.in | 1 prefix=@@prefix@@
|
/xen/tools/libs/toolcore/ |
A D | xentoolcore.pc.in | 1 prefix=@@prefix@@
|
/xen/tools/libs/evtchn/ |
A D | xenevtchn.pc.in | 1 prefix=@@prefix@@
|
/xen/tools/xenstat/libxenstat/ |
A D | xenstat.pc.in | 1 prefix=@@prefix@@
|
/xen/tools/libxl/ |
A D | xlutil.pc.in | 1 prefix=@@prefix@@
|
A D | xenlight.pc.in | 1 prefix=@@prefix@@
|
/xen/tools/libs/call/ |
A D | xencall.pc.in | 1 prefix=@@prefix@@
|
/xen/tools/libs/foreignmemory/ |
A D | xenforeignmemory.pc.in | 1 prefix=@@prefix@@
|
/xen/tools/libs/gnttab/ |
A D | xengnttab.pc.in | 1 prefix=@@prefix@@
|
/xen/tools/libs/devicemodel/ |
A D | xendevicemodel.pc.in | 1 prefix=@@prefix@@
|
/xen/tools/libxc/ |
A D | xenguest.pc.in | 1 prefix=@@prefix@@
|
A D | xencontrol.pc.in | 1 prefix=@@prefix@@
|
/xen/tools/libs/hypfs/ |
A D | xenhypfs.pc.in | 1 prefix=@@prefix@@
|
/xen/tools/libvchan/ |
A D | xenvchan.pc.in | 1 prefix=@@prefix@@
|
/xen/tools/xenstore/ |
A D | xenstore.pc.in | 1 prefix=@@prefix@@
|
/xen/tools/firmware/etherboot/patches/ |
A D | boot_prompt_option.patch | 1 --- a/src/arch/x86/prefix/romprefix.S 2016-10-10 13:09:18.126031400 +0100 2 +++ b/src/arch/x86/prefix/romprefix.S 2016-10-10 13:11:22.930680278 +0100
|
/xen/tools/tests/x86_emulator/ |
A D | Makefile | 193 prefix=$(shell echo $(subst -,_,$*) | sed -e 's,^\([0-9]\),_\1,'); \ 196 "$${prefix}_$(arch)$${flavor}[] = {"; \ 199 echo "asm(\".type $${prefix}_$(arch)$${flavor}, STT_NOTYPE;\");"; \ 200 echo "asm(\".type $${prefix}_$(arch)$${flavor}, STT_FUNC;\");"; \ 212 prefix=$(shell echo $(subst -,_,$*) | sed -e 's,^\([0-9]\),_\1,'); \ 215 "$${prefix}_$(arch)$${flavor}[] = {"; \ 218 echo "asm(\".type $${prefix}_$(arch)$${flavor}, STT_NOTYPE;\");"; \ 219 echo "asm(\".type $${prefix}_$(arch)$${flavor}, STT_FUNC;\");"; \
|
/xen/tools/ocaml/xenstored/ |
A D | logging.ml | 28 let prefix = "syslog:" in 29 let len_prefix = String.length prefix in 31 if String.startswith prefix s 35 (* The prefix of a log line depends on the log destination *) 36 let prefix log_destination ?level ?key date = match log_destination with function 192 let prefix = prefix !xenstored_log_destination ~level:level' ~key date in 193 Printf.ksprintf (fun s -> logger.write ~level (prefix ^ s)) fmt 297 let prefix = prefix !access_log_destination date in 298 let msg = Printf.sprintf "%s %s %s %s" prefix tid access_type data in
|
A D | stdext.ml | 68 (** True if string 'x' starts with prefix 'prefix' *) 69 let startswith prefix x = 70 let x_l = String.length x and prefix_l = String.length prefix in 71 prefix_l <= x_l && String.sub x 0 prefix_l = prefix
|
/xen/ |
A D | configure | 721 datarootdir='${prefix}/share' 723 sysconfdir='${prefix}/etc' 724 sharedstatedir='${prefix}/com' 725 localstatedir='${prefix}/var' 727 includedir='${prefix}/include' 1910 test "x$prefix" = "xNONE" && prefix=$ac_default_prefix 1924 sysconfdir=$prefix/etc 2003 debugdir_path=$prefix/lib/debug 2042 SHAREDIR=$prefix/share 2403 test "x$prefix" = xNONE && prefix=$ac_default_prefix [all …]
|
Completed in 21 milliseconds
1234