Home
last modified time | relevance | path

Searched refs:php (Results 1 – 25 of 90) sorted by relevance

1234

/freebsd-12-stable/contrib/file/magic/Magdir/
Dwsdl4 # wsdl: PHP WSDL Cache, https://www.php.net/manual/en/book.soap.php
6 # https://svn.php.net/viewvc/php/php-src/trunk/ext/soap/php_sdl.c?revision=HEAD&view=markup
Dcommands133 0 search/1/c =<?php PHP script text
135 !:mime text/x-php
137 !:mime text/x-php
139 !:mime text/x-php
140 0 search/1/w #!\ /usr/local/bin/php PHP script text executable
142 !:mime text/x-php
143 0 search/1/w #!\ /usr/bin/php PHP script text executable
145 !:mime text/x-php
148 0 string =<?php
152 !:mime text/x-php
[all …]
Dmetastore6 # see https://david.hardeman.nu/software.php#metastore
Dwarc12 # see https://www.archive.org/web/researcher/ArcFileFormat.php
Ddbpf6 # https://www.wiki.sc4devotion.com/index.php?title=DBPF
Dole2compounddocs113 # https://www.macdisk.com/macsigen.php "WPC2" for Wordperfect 2 *.wpd
137 # https://www.macdisk.com/macsigen.php XLS5 for Excel 5
145 # https://www.macdisk.com/macsigen.php
365 # https://www.macdisk.com/macsigen.php
373 # https://www.macdisk.com/macsigen.php
380 # https://www.macdisk.com/macsigen.php XLS5 for Excel 5
408 # https://www.macdisk.com/macsigen.php
459 # https://www.macdisk.com/macsigen.php
546 # https://www.macdisk.com/macsigen.php "WPC2" for Wordperfect 2 *.wpd
Danimation1047 # URL: https://wiki.multimedia.cx/index.php?title=Bink_Container
1075 # URL: https://wiki.multimedia.cx/index.php?title=NUT
1080 # URL: https://wiki.multimedia.cx/index.php?title=Nullsoft_Video
1085 # URL: https://www.red.com/ ; https://wiki.multimedia.cx/index.php?title=REDCode
1090 # URL: https://wiki.multimedia.cx/index.php?title=MTV
1095 # URL: https://wiki.multimedia.cx/index.php?title=ARMovie
1100 # URL: https://wiki.multimedia.cx/index.php?title=Interplay_MVE
1105 # URL: https://wiki.multimedia.cx/index.php?title=WTV
1112 # URL: https://wiki.multimedia.cx/index.php?title=Sega_FILM
1119 # URL: https://wiki.multimedia.cx/index.php?title=THP
[all …]
Dcups6 # https://www.cups.org/documentation.php/spec-raster.html
Dandroid98 # https://forum.xda-developers.com/showthread.php?p=9122369
99 # https://forum.xda-developers.com/showthread.php?t=816449
/freebsd-12-stable/sys/dev/cxgbe/iw_cxgbe/
Dmem.c374 static int register_mem(struct c4iw_dev *rhp, struct c4iw_pd *php, in register_mem() argument
411 struct c4iw_pd *php; in c4iw_get_dma_mr() local
417 php = to_c4iw_pd(pd); in c4iw_get_dma_mr()
418 rhp = php->rhp; in c4iw_get_dma_mr()
425 mhp->attr.pdid = php->pdid; in c4iw_get_dma_mr()
434 ret = write_tpt_entry(&rhp->rdev, 0, &stag, 1, php->pdid, in c4iw_get_dma_mr()
461 struct c4iw_pd *php; in c4iw_reg_user_mr() local
472 php = to_c4iw_pd(pd); in c4iw_reg_user_mr()
473 rhp = php->rhp; in c4iw_reg_user_mr()
532 mhp->attr.pdid = php->pdid; in c4iw_reg_user_mr()
[all …]
Dprovider.c232 struct c4iw_pd *php = to_c4iw_pd(pd); in c4iw_deallocate_pd() local
233 struct c4iw_dev *rhp = php->rhp; in c4iw_deallocate_pd()
235 CTR3(KTR_IW_CXGBE, "%s: pd %p, pdid 0x%x", __func__, pd, php->pdid); in c4iw_deallocate_pd()
237 c4iw_put_resource(&rhp->rdev.resource.pdid_table, php->pdid); in c4iw_deallocate_pd()
241 kfree(php); in c4iw_deallocate_pd()
250 struct c4iw_pd *php; in c4iw_allocate_pd() local
260 php = kzalloc(sizeof(*php), GFP_KERNEL); in c4iw_allocate_pd()
261 if (!php) { in c4iw_allocate_pd()
265 php->pdid = pdid; in c4iw_allocate_pd()
266 php->rhp = rhp; in c4iw_allocate_pd()
[all …]
/freebsd-12-stable/contrib/dtc/libfdt/
Dfdt_ro.c357 const fdt32_t *php; in fdt_get_phandle() local
362 php = fdt_getprop(fdt, nodeoffset, "phandle", &len); in fdt_get_phandle()
363 if (!php || (len != sizeof(*php))) { in fdt_get_phandle()
364 php = fdt_getprop(fdt, nodeoffset, "linux,phandle", &len); in fdt_get_phandle()
365 if (!php || (len != sizeof(*php))) in fdt_get_phandle()
369 return fdt32_to_cpu(*php); in fdt_get_phandle()
/freebsd-12-stable/sys/contrib/libfdt/
Dfdt_ro.c427 const fdt32_t *php; in fdt_get_phandle() local
432 php = fdt_getprop(fdt, nodeoffset, "phandle", &len); in fdt_get_phandle()
433 if (!php || (len != sizeof(*php))) { in fdt_get_phandle()
434 php = fdt_getprop(fdt, nodeoffset, "linux,phandle", &len); in fdt_get_phandle()
435 if (!php || (len != sizeof(*php))) in fdt_get_phandle()
439 return fdt32_to_cpu(*php); in fdt_get_phandle()
/freebsd-12-stable/stand/common/
Dload_elf.c470 Elf_Phdr *phdr, *php; in __elfN() local
804 php = NULL; in __elfN()
807 php = phdr + i; in __elfN()
808 adp = php->p_vaddr; in __elfN()
815 if (php == NULL) /* this is bad, we cannot get to symbols or _DYNAMIC */ in __elfN()
818 ndp = php->p_filesz / sizeof(Elf_Dyn); in __elfN()
821 dp = malloc(php->p_filesz); in __elfN()
824 archsw.arch_copyout(php->p_vaddr + off, dp, php->p_filesz); in __elfN()
/freebsd-12-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
Ddt_pragma.c56 dt_idhash_t *php; in dt_pragma_apply() local
59 if ((php = yypcb->pcb_pragmas) == NULL) in dt_pragma_apply()
62 while ((pdp = dt_idhash_lookup(php, idp->di_name)) != NULL) { in dt_pragma_apply()
71 dt_idhash_delete(php, pdp); in dt_pragma_apply()
/freebsd-12-stable/sys/contrib/zstd/lib/
Dlibzstd.pc.in3 # BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
/freebsd-12-stable/sys/gnu/dts/arm64/marvell/
Darmada-3720-espressobin-v7.dts11 * Schematic available at http://wiki.espressobin.net/tiki-download_file.php?fileId=200
Darmada-3720-espressobin-v7-emmc.dts11 * Schematic available at http://wiki.espressobin.net/tiki-download_file.php?fileId=200
/freebsd-12-stable/usr.bin/gcore/
Delfcore.c207 Elf_Phdr *php; in elf_coredump() local
260 php = (Elf_Phdr *)((char *)hdr + sizeof(Elf_Ehdr)) + 1; in elf_coredump()
263 uintmax_t nleft = php->p_filesz; in elf_coredump()
266 iorequest.piod_offs = (caddr_t)(uintptr_t)php->p_vaddr; in elf_coredump()
291 php++; in elf_coredump()
/freebsd-12-stable/lib/librtld_db/
Drtld_db.c232 rd_new(struct proc_handle *php) in rd_new() argument
241 rdap->rda_php = php; in rd_new()
/freebsd-12-stable/contrib/ntp/sntp/include/
Dntp.lic6 <PFX> <http://opensource.org/licenses/ntp-license.php>
/freebsd-12-stable/contrib/unbound/contrib/
Dcreate_unbound_ad_servers.cmd12 set list_addr="http://pgl.yoyo.org/adservers/serverlist.php?hostformat=nohtml&showintro=1&startdate…
/freebsd-12-stable/sys/mips/conf/
DALFA_HORNET_UB4 # http://www.alfa.com.tw/products_show.php?pc=99&ps=50
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
DTHIRDPARTYLICENSE.lz43 BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
/freebsd-12-stable/sys/gnu/dts/arm/
Daxp223.dtsi47 * http://www.x-powers.com/product/AXP22X.php

1234