Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 1 | Copyright (c) 2014, Linaro Limited |
| 2 | All rights reserved. |
| 3 | |
| 4 | Redistribution and use in source and binary forms, with or without |
| 5 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 6 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 7 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 8 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 9 | notice, this list of conditions and the following disclaimer in the |
| 10 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 11 | * Neither the name of the Linaro nor the |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 12 | names of its contributors may be used to endorse or promote products |
| 13 | derived from this software without specific prior written permission. |
| 14 | |
| 15 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 16 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 17 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 18 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 19 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 20 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 21 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 22 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 23 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 24 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 25 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 | |
| 27 | ------------------------------------------------------------------- |
| 28 | |
| 29 | strchr - find a character in a string |
| 30 | |
| 31 | Copyright (c) 2014, ARM Limited |
| 32 | All rights Reserved. |
| 33 | Copyright (c) 2014, Linaro Ltd. |
| 34 | |
| 35 | Redistribution and use in source and binary forms, with or without |
| 36 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 37 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 38 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 39 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 40 | notice, this list of conditions and the following disclaimer in the |
| 41 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 42 | * Neither the name of the company nor the names of its contributors |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 43 | may be used to endorse or promote products derived from this |
| 44 | software without specific prior written permission. |
| 45 | |
| 46 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 47 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 48 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 49 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 50 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 51 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 52 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 53 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 54 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 55 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 56 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 57 | |
| 58 | ------------------------------------------------------------------- |
| 59 | |
Elliott Hughes | 3e424d0 | 2014-07-23 16:02:26 -0700 | [diff] [blame] | 60 | Copyright (c) 1993 John Brezak |
| 61 | All rights reserved. |
| 62 | |
| 63 | Redistribution and use in source and binary forms, with or without |
| 64 | modification, are permitted provided that the following conditions |
| 65 | are met: |
| 66 | 1. Redistributions of source code must retain the above copyright |
| 67 | notice, this list of conditions and the following disclaimer. |
| 68 | 2. Redistributions in binary form must reproduce the above copyright |
| 69 | notice, this list of conditions and the following disclaimer in the |
| 70 | documentation and/or other materials provided with the distribution. |
| 71 | 3. The name of the author may be used to endorse or promote products |
| 72 | derived from this software without specific prior written permission. |
| 73 | |
| 74 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND ANY EXPRESS OR |
| 75 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 76 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 77 | DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, |
| 78 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 79 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 80 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 81 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 82 | STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
| 83 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 84 | POSSIBILITY OF SUCH DAMAGE. |
| 85 | |
| 86 | ------------------------------------------------------------------- |
| 87 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 88 | Copyright (c) 2009-2013 The Linux Foundation. All rights reserved. |
| 89 | |
| 90 | Redistribution and use in source and binary forms, with or without |
| 91 | modification, are permitted provided that the following conditions are met: |
| 92 | * Redistributions of source code must retain the above copyright |
| 93 | notice, this list of conditions and the following disclaimer. |
| 94 | * Redistributions in binary form must reproduce the above copyright |
| 95 | notice, this list of conditions and the following disclaimer in the |
| 96 | documentation and/or other materials provided with the distribution. |
| 97 | * Neither the name of The Linux Foundation nor the names of its contributors may |
| 98 | be used to endorse or promote products derived from this software |
| 99 | without specific prior written permission. |
| 100 | |
| 101 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 102 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 103 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 104 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 105 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 106 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 107 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 108 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 109 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 110 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 111 | POSSIBILITY OF SUCH DAMAGE. |
| 112 | |
| 113 | ------------------------------------------------------------------- |
| 114 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 115 | ==================================================== |
| 116 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 117 | |
| 118 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 119 | Permission to use, copy, modify, and distribute this |
| 120 | software is freely granted, provided that this notice |
| 121 | is preserved. |
| 122 | |
| 123 | ------------------------------------------------------------------- |
| 124 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 125 | Based on the UCB version with the ID appearing below. |
| 126 | This is ANSIish only when "multibyte character == plain character". |
| 127 | |
| 128 | Copyright (c) 1989, 1993 |
| 129 | The Regents of the University of California. All rights reserved. |
| 130 | |
| 131 | Redistribution and use in source and binary forms, with or without |
| 132 | modification, are permitted provided that the following conditions |
| 133 | are met: |
| 134 | 1. Redistributions of source code must retain the above copyright |
| 135 | notice, this list of conditions and the following disclaimer. |
| 136 | 2. Redistributions in binary form must reproduce the above copyright |
| 137 | notice, this list of conditions and the following disclaimer in the |
| 138 | documentation and/or other materials provided with the distribution. |
| 139 | 3. Neither the name of the University nor the names of its contributors |
| 140 | may be used to endorse or promote products derived from this software |
| 141 | without specific prior written permission. |
| 142 | |
| 143 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 144 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 145 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 146 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 147 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 148 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 149 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 150 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 151 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 152 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 153 | SUCH DAMAGE. |
| 154 | |
| 155 | ------------------------------------------------------------------- |
| 156 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 157 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 158 | All rights reserved. |
| 159 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 160 | Redistribution and use in source and binary forms, with or without |
| 161 | modification, are permitted provided that the following conditions |
| 162 | are met: |
| 163 | 1. Redistributions of source code must retain the above copyright |
| 164 | notice, this list of conditions and the following disclaimer. |
| 165 | 2. Redistributions in binary form must reproduce the above copyright |
| 166 | notice, this list of conditions and the following disclaimer in the |
| 167 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 168 | 3. Neither the name of the project nor the names of its contributors |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 169 | may be used to endorse or promote products derived from this software |
| 170 | without specific prior written permission. |
| 171 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 172 | THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 173 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 174 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 175 | ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 176 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 177 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 178 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 179 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 180 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 181 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 182 | SUCH DAMAGE. |
| 183 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 184 | ------------------------------------------------------------------- |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 185 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 186 | Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC") |
| 187 | Copyright (C) 1995-1999, 2001, 2003 Internet Software Consortium. |
| 188 | |
| 189 | Permission to use, copy, modify, and/or distribute this software for any |
| 190 | purpose with or without fee is hereby granted, provided that the above |
| 191 | copyright notice and this permission notice appear in all copies. |
| 192 | |
| 193 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 194 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 195 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 196 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 197 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 198 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 199 | PERFORMANCE OF THIS SOFTWARE. |
| 200 | |
| 201 | ------------------------------------------------------------------- |
| 202 | |
| 203 | Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC") |
| 204 | Copyright (C) 1997-2001 Internet Software Consortium. |
| 205 | |
| 206 | Permission to use, copy, modify, and/or distribute this software for any |
| 207 | purpose with or without fee is hereby granted, provided that the above |
| 208 | copyright notice and this permission notice appear in all copies. |
| 209 | |
| 210 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 211 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 212 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 213 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 214 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 215 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 216 | PERFORMANCE OF THIS SOFTWARE. |
| 217 | |
| 218 | ------------------------------------------------------------------- |
| 219 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 220 | Copyright (C) 2006 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 221 | |
| 222 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 223 | you may not use this file except in compliance with the License. |
| 224 | You may obtain a copy of the License at |
| 225 | |
| 226 | http://www.apache.org/licenses/LICENSE-2.0 |
| 227 | |
| 228 | Unless required by applicable law or agreed to in writing, software |
| 229 | distributed under the License is distributed on an "AS IS" BASIS, |
| 230 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 231 | See the License for the specific language governing permissions and |
| 232 | limitations under the License. |
| 233 | |
| 234 | ------------------------------------------------------------------- |
| 235 | |
| 236 | Copyright (C) 2006 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 237 | All rights reserved. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 238 | |
| 239 | Redistribution and use in source and binary forms, with or without |
| 240 | modification, are permitted provided that the following conditions |
| 241 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 242 | * Redistributions of source code must retain the above copyright |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 243 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 244 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 245 | notice, this list of conditions and the following disclaimer in |
| 246 | the documentation and/or other materials provided with the |
| 247 | distribution. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 248 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 249 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 250 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 251 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 252 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 253 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 254 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 255 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 256 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 257 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 258 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 259 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 260 | SUCH DAMAGE. |
| 261 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 262 | ------------------------------------------------------------------- |
| 263 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 264 | Copyright (C) 2008 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 265 | |
| 266 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 267 | you may not use this file except in compliance with the License. |
| 268 | You may obtain a copy of the License at |
| 269 | |
| 270 | http://www.apache.org/licenses/LICENSE-2.0 |
| 271 | |
| 272 | Unless required by applicable law or agreed to in writing, software |
| 273 | distributed under the License is distributed on an "AS IS" BASIS, |
| 274 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 275 | See the License for the specific language governing permissions and |
| 276 | limitations under the License. |
| 277 | |
| 278 | ------------------------------------------------------------------- |
| 279 | |
| 280 | Copyright (C) 2008 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 281 | All rights reserved. |
| 282 | |
| 283 | Redistribution and use in source and binary forms, with or without |
| 284 | modification, are permitted provided that the following conditions |
| 285 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 286 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 287 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 288 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 289 | notice, this list of conditions and the following disclaimer in |
| 290 | the documentation and/or other materials provided with the |
| 291 | distribution. |
| 292 | |
| 293 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 294 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 295 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 296 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 297 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 298 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 299 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 300 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 301 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 302 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 303 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 304 | SUCH DAMAGE. |
| 305 | |
| 306 | ------------------------------------------------------------------- |
| 307 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 308 | Copyright (C) 2008 The Android Open Source Project |
| 309 | All rights reserved. |
| 310 | Copyright (c) 2013-2014, NVIDIA Corporation. All rights reserved. |
| 311 | |
| 312 | Redistribution and use in source and binary forms, with or without |
| 313 | modification, are permitted provided that the following conditions |
| 314 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 315 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 316 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 317 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 318 | notice, this list of conditions and the following disclaimer in |
| 319 | the documentation and/or other materials provided with the |
| 320 | distribution. |
| 321 | |
| 322 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 323 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 324 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 325 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 326 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 327 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 328 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 329 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 330 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 331 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 332 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 333 | SUCH DAMAGE. |
| 334 | |
| 335 | ------------------------------------------------------------------- |
| 336 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 337 | Copyright (C) 2009 The Android Open Source Project |
| 338 | All rights reserved. |
| 339 | |
| 340 | Redistribution and use in source and binary forms, with or without |
| 341 | modification, are permitted provided that the following conditions |
| 342 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 343 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 344 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 345 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 346 | notice, this list of conditions and the following disclaimer in |
| 347 | the documentation and/or other materials provided with the |
| 348 | distribution. |
| 349 | |
| 350 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 351 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 352 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 353 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 354 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 355 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 356 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 357 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 358 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 359 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 360 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 361 | SUCH DAMAGE. |
| 362 | |
| 363 | ------------------------------------------------------------------- |
| 364 | |
| 365 | Copyright (C) 2010 The Android Open Source Project |
| 366 | |
| 367 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 368 | you may not use this file except in compliance with the License. |
| 369 | You may obtain a copy of the License at |
| 370 | |
| 371 | http://www.apache.org/licenses/LICENSE-2.0 |
| 372 | |
| 373 | Unless required by applicable law or agreed to in writing, software |
| 374 | distributed under the License is distributed on an "AS IS" BASIS, |
| 375 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 376 | See the License for the specific language governing permissions and |
| 377 | limitations under the License. |
| 378 | |
| 379 | ------------------------------------------------------------------- |
| 380 | |
| 381 | Copyright (C) 2010 The Android Open Source Project |
| 382 | All rights reserved. |
| 383 | |
| 384 | Redistribution and use in source and binary forms, with or without |
| 385 | modification, are permitted provided that the following conditions |
| 386 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 387 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 388 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 389 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 390 | notice, this list of conditions and the following disclaimer in |
| 391 | the documentation and/or other materials provided with the |
| 392 | distribution. |
| 393 | |
| 394 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 395 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 396 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 397 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 398 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 399 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 400 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 401 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 402 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 403 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 404 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 405 | SUCH DAMAGE. |
| 406 | |
| 407 | ------------------------------------------------------------------- |
| 408 | |
| 409 | Copyright (C) 2010 The Android Open Source Project |
| 410 | Copyright (c) 2008 ARM Ltd |
| 411 | All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 412 | |
| 413 | Redistribution and use in source and binary forms, with or without |
| 414 | modification, are permitted provided that the following conditions |
| 415 | are met: |
| 416 | 1. Redistributions of source code must retain the above copyright |
| 417 | notice, this list of conditions and the following disclaimer. |
| 418 | 2. Redistributions in binary form must reproduce the above copyright |
| 419 | notice, this list of conditions and the following disclaimer in the |
| 420 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 421 | 3. The name of the company may not be used to endorse or promote |
| 422 | products derived from this software without specific prior written |
| 423 | permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 424 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 425 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 426 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 427 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 428 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 429 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 430 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 431 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 432 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 433 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 434 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 435 | |
| 436 | Android adaptation and tweak by Jim Huang <jserv@0xlab.org>. |
| 437 | |
| 438 | ------------------------------------------------------------------- |
| 439 | |
| 440 | Copyright (C) 2011 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 441 | All rights reserved. |
| 442 | |
| 443 | Redistribution and use in source and binary forms, with or without |
| 444 | modification, are permitted provided that the following conditions |
| 445 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 446 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 447 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 448 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 449 | notice, this list of conditions and the following disclaimer in |
| 450 | the documentation and/or other materials provided with the |
| 451 | distribution. |
| 452 | |
| 453 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 454 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 455 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 456 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 457 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 458 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 459 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 460 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 461 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 462 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 463 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 464 | SUCH DAMAGE. |
| 465 | |
| 466 | ------------------------------------------------------------------- |
| 467 | |
| 468 | Copyright (C) 2012 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 469 | |
| 470 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 471 | you may not use this file except in compliance with the License. |
| 472 | You may obtain a copy of the License at |
| 473 | |
| 474 | http://www.apache.org/licenses/LICENSE-2.0 |
| 475 | |
| 476 | Unless required by applicable law or agreed to in writing, software |
| 477 | distributed under the License is distributed on an "AS IS" BASIS, |
| 478 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 479 | See the License for the specific language governing permissions and |
| 480 | limitations under the License. |
| 481 | |
| 482 | ------------------------------------------------------------------- |
| 483 | |
| 484 | Copyright (C) 2012 The Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 485 | All rights reserved. |
| 486 | |
| 487 | Redistribution and use in source and binary forms, with or without |
| 488 | modification, are permitted provided that the following conditions |
| 489 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 490 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 491 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 492 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 493 | notice, this list of conditions and the following disclaimer in |
| 494 | the documentation and/or other materials provided with the |
| 495 | distribution. |
| 496 | |
| 497 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 498 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 499 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 500 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 501 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 502 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 503 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 504 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 505 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 506 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 507 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 508 | SUCH DAMAGE. |
| 509 | |
| 510 | ------------------------------------------------------------------- |
| 511 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 512 | Copyright (C) 2013 The Android Open Source Project |
| 513 | |
| 514 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 515 | you may not use this file except in compliance with the License. |
| 516 | You may obtain a copy of the License at |
| 517 | |
| 518 | http://www.apache.org/licenses/LICENSE-2.0 |
| 519 | |
| 520 | Unless required by applicable law or agreed to in writing, software |
| 521 | distributed under the License is distributed on an "AS IS" BASIS, |
| 522 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 523 | See the License for the specific language governing permissions and |
| 524 | limitations under the License. |
| 525 | |
| 526 | ------------------------------------------------------------------- |
| 527 | |
| 528 | Copyright (C) 2013 The Android Open Source Project |
| 529 | All rights reserved. |
| 530 | |
| 531 | Redistribution and use in source and binary forms, with or without |
| 532 | modification, are permitted provided that the following conditions |
| 533 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 534 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 535 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 536 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 537 | notice, this list of conditions and the following disclaimer in |
| 538 | the documentation and/or other materials provided with the |
| 539 | distribution. |
| 540 | |
| 541 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 542 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 543 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 544 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 545 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 546 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 547 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 548 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 549 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 550 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 551 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 552 | SUCH DAMAGE. |
| 553 | |
| 554 | ------------------------------------------------------------------- |
| 555 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 556 | Copyright (C) 2013 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 557 | All rights reserved. |
| 558 | Copyright (c) 2013-2014 NVIDIA Corporation. All rights reserved. |
| 559 | |
| 560 | Redistribution and use in source and binary forms, with or without |
| 561 | modification, are permitted provided that the following conditions |
| 562 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 563 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 564 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 565 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 566 | notice, this list of conditions and the following disclaimer in |
| 567 | the documentation and/or other materials provided with the |
| 568 | distribution. |
| 569 | |
| 570 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 571 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 572 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 573 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 574 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 575 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 576 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 577 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 578 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 579 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 580 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 581 | SUCH DAMAGE. |
| 582 | |
| 583 | ------------------------------------------------------------------- |
| 584 | |
| 585 | Copyright (C) 2013 The Android Open Source Project |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 586 | Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved. |
| 587 | All rights reserved. |
| 588 | |
| 589 | Redistribution and use in source and binary forms, with or without |
| 590 | modification, are permitted provided that the following conditions |
| 591 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 592 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 593 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 594 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 595 | notice, this list of conditions and the following disclaimer in |
| 596 | the documentation and/or other materials provided with the |
| 597 | distribution. |
| 598 | |
| 599 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 600 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 601 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 602 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 603 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 604 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 605 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 606 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 607 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 608 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 609 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 610 | SUCH DAMAGE. |
| 611 | |
| 612 | ------------------------------------------------------------------- |
| 613 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 614 | Copyright (C) 2014 The Android Open Source Project |
| 615 | |
| 616 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 617 | you may not use this file except in compliance with the License. |
| 618 | You may obtain a copy of the License at |
| 619 | |
| 620 | http://www.apache.org/licenses/LICENSE-2.0 |
| 621 | |
| 622 | Unless required by applicable law or agreed to in writing, software |
| 623 | distributed under the License is distributed on an "AS IS" BASIS, |
| 624 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 625 | See the License for the specific language governing permissions and |
| 626 | limitations under the License. |
| 627 | |
| 628 | ------------------------------------------------------------------- |
| 629 | |
| 630 | Copyright (C) 2014 The Android Open Source Project |
| 631 | All rights reserved. |
| 632 | |
| 633 | Redistribution and use in source and binary forms, with or without |
| 634 | modification, are permitted provided that the following conditions |
| 635 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 636 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 637 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 638 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 639 | notice, this list of conditions and the following disclaimer in |
| 640 | the documentation and/or other materials provided with the |
| 641 | distribution. |
| 642 | |
| 643 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 644 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 645 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 646 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 647 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 648 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 649 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 650 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 651 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 652 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 653 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 654 | SUCH DAMAGE. |
| 655 | |
| 656 | ------------------------------------------------------------------- |
| 657 | |
Elliott Hughes | 7e54c76 | 2015-05-12 10:09:01 -0700 | [diff] [blame] | 658 | Copyright (C) 2015 The Android Open Source Project |
| 659 | |
| 660 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 661 | you may not use this file except in compliance with the License. |
| 662 | You may obtain a copy of the License at |
| 663 | |
| 664 | http://www.apache.org/licenses/LICENSE-2.0 |
| 665 | |
| 666 | Unless required by applicable law or agreed to in writing, software |
| 667 | distributed under the License is distributed on an "AS IS" BASIS, |
| 668 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 669 | See the License for the specific language governing permissions and |
| 670 | limitations under the License. |
| 671 | |
| 672 | ------------------------------------------------------------------- |
| 673 | |
| 674 | Copyright (C) 2015 The Android Open Source Project |
| 675 | All rights reserved. |
| 676 | |
| 677 | Redistribution and use in source and binary forms, with or without |
| 678 | modification, are permitted provided that the following conditions |
| 679 | are met: |
| 680 | * Redistributions of source code must retain the above copyright |
| 681 | notice, this list of conditions and the following disclaimer. |
| 682 | * Redistributions in binary form must reproduce the above copyright |
| 683 | notice, this list of conditions and the following disclaimer in |
| 684 | the documentation and/or other materials provided with the |
| 685 | distribution. |
| 686 | |
| 687 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 688 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 689 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 690 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 691 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 692 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 693 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 694 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 695 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 696 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 697 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 698 | SUCH DAMAGE. |
| 699 | |
| 700 | ------------------------------------------------------------------- |
| 701 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 702 | Copyright (C) 2016 The Android Open Source Project |
| 703 | |
| 704 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 705 | you may not use this file except in compliance with the License. |
| 706 | You may obtain a copy of the License at |
| 707 | |
| 708 | http://www.apache.org/licenses/LICENSE-2.0 |
| 709 | |
| 710 | Unless required by applicable law or agreed to in writing, software |
| 711 | distributed under the License is distributed on an "AS IS" BASIS, |
| 712 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 713 | See the License for the specific language governing permissions and |
| 714 | limitations under the License. |
| 715 | |
| 716 | ------------------------------------------------------------------- |
| 717 | |
| 718 | Copyright (C) 2016 The Android Open Source Project |
| 719 | All rights reserved. |
| 720 | |
| 721 | Redistribution and use in source and binary forms, with or without |
| 722 | modification, are permitted provided that the following conditions |
| 723 | are met: |
| 724 | * Redistributions of source code must retain the above copyright |
| 725 | notice, this list of conditions and the following disclaimer. |
| 726 | * Redistributions in binary form must reproduce the above copyright |
| 727 | notice, this list of conditions and the following disclaimer in |
| 728 | the documentation and/or other materials provided with the |
| 729 | distribution. |
| 730 | |
| 731 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 732 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 733 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 734 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 735 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 736 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 737 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 738 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 739 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 740 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 741 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 742 | SUCH DAMAGE. |
| 743 | |
| 744 | ------------------------------------------------------------------- |
| 745 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 746 | Copyright (c) 1980, 1983, 1988, 1993 |
| 747 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 748 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 749 | Redistribution and use in source and binary forms, with or without |
| 750 | modification, are permitted provided that the following conditions |
| 751 | are met: |
| 752 | 1. Redistributions of source code must retain the above copyright |
| 753 | notice, this list of conditions and the following disclaimer. |
| 754 | 2. Redistributions in binary form must reproduce the above copyright |
| 755 | notice, this list of conditions and the following disclaimer in the |
| 756 | documentation and/or other materials provided with the distribution. |
| 757 | 3. All advertising materials mentioning features or use of this software |
| 758 | must display the following acknowledgement: |
| 759 | This product includes software developed by the University of |
| 760 | California, Berkeley and its contributors. |
| 761 | 4. Neither the name of the University nor the names of its contributors |
| 762 | may be used to endorse or promote products derived from this software |
| 763 | without specific prior written permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 764 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 765 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 766 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 767 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 768 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 769 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 770 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 771 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 772 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 773 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 774 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 775 | SUCH DAMAGE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 776 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 777 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 778 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 779 | |
| 780 | Permission to use, copy, modify, and distribute this software for any |
| 781 | purpose with or without fee is hereby granted, provided that the above |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 782 | copyright notice and this permission notice appear in all copies, and that |
| 783 | the name of Digital Equipment Corporation not be used in advertising or |
| 784 | publicity pertaining to distribution of the document or software without |
| 785 | specific, written prior permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 786 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 787 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 788 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 789 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 790 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 791 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 792 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 793 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 794 | SOFTWARE. |
| 795 | |
| 796 | ------------------------------------------------------------------- |
| 797 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 798 | Copyright (c) 1982, 1986, 1993 |
| 799 | The Regents of the University of California. All rights reserved. |
| 800 | |
| 801 | Redistribution and use in source and binary forms, with or without |
| 802 | modification, are permitted provided that the following conditions |
| 803 | are met: |
| 804 | 1. Redistributions of source code must retain the above copyright |
| 805 | notice, this list of conditions and the following disclaimer. |
| 806 | 2. Redistributions in binary form must reproduce the above copyright |
| 807 | notice, this list of conditions and the following disclaimer in the |
| 808 | documentation and/or other materials provided with the distribution. |
| 809 | 3. Neither the name of the University nor the names of its contributors |
| 810 | may be used to endorse or promote products derived from this software |
| 811 | without specific prior written permission. |
| 812 | |
| 813 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 814 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 815 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 816 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 817 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 818 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 819 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 820 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 821 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 822 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 823 | SUCH DAMAGE. |
| 824 | |
| 825 | ------------------------------------------------------------------- |
| 826 | |
Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 827 | Copyright (c) 1982, 1986, 1993 |
| 828 | The Regents of the University of California. All rights reserved. |
| 829 | (c) UNIX System Laboratories, Inc. |
| 830 | All or some portions of this file are derived from material licensed |
| 831 | to the University of California by American Telephone and Telegraph |
| 832 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 833 | the permission of UNIX System Laboratories, Inc. |
| 834 | |
| 835 | Redistribution and use in source and binary forms, with or without |
| 836 | modification, are permitted provided that the following conditions |
| 837 | are met: |
| 838 | 1. Redistributions of source code must retain the above copyright |
| 839 | notice, this list of conditions and the following disclaimer. |
| 840 | 2. Redistributions in binary form must reproduce the above copyright |
| 841 | notice, this list of conditions and the following disclaimer in the |
| 842 | documentation and/or other materials provided with the distribution. |
| 843 | 3. Neither the name of the University nor the names of its contributors |
| 844 | may be used to endorse or promote products derived from this software |
| 845 | without specific prior written permission. |
| 846 | |
| 847 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 848 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 849 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 850 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 851 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 852 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 853 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 854 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 855 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 856 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 857 | SUCH DAMAGE. |
| 858 | |
| 859 | ------------------------------------------------------------------- |
| 860 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 861 | Copyright (c) 1983, 1987, 1989 |
| 862 | The Regents of the University of California. All rights reserved. |
| 863 | |
| 864 | Redistribution and use in source and binary forms, with or without |
| 865 | modification, are permitted provided that the following conditions |
| 866 | are met: |
| 867 | 1. Redistributions of source code must retain the above copyright |
| 868 | notice, this list of conditions and the following disclaimer. |
| 869 | 2. Redistributions in binary form must reproduce the above copyright |
| 870 | notice, this list of conditions and the following disclaimer in the |
| 871 | documentation and/or other materials provided with the distribution. |
| 872 | 3. Neither the name of the University nor the names of its contributors |
| 873 | may be used to endorse or promote products derived from this software |
| 874 | without specific prior written permission. |
| 875 | |
| 876 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 877 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 878 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 879 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 880 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 881 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 882 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 883 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 884 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 885 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 886 | SUCH DAMAGE. |
| 887 | |
| 888 | ------------------------------------------------------------------- |
| 889 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 890 | Copyright (c) 1983, 1989 |
| 891 | The Regents of the University of California. All rights reserved. |
| 892 | |
| 893 | Redistribution and use in source and binary forms, with or without |
| 894 | modification, are permitted provided that the following conditions |
| 895 | are met: |
| 896 | 1. Redistributions of source code must retain the above copyright |
| 897 | notice, this list of conditions and the following disclaimer. |
| 898 | 2. Redistributions in binary form must reproduce the above copyright |
| 899 | notice, this list of conditions and the following disclaimer in the |
| 900 | documentation and/or other materials provided with the distribution. |
| 901 | 3. All advertising materials mentioning features or use of this software |
| 902 | must display the following acknowledgement: |
| 903 | This product includes software developed by the University of |
| 904 | California, Berkeley and its contributors. |
| 905 | 4. Neither the name of the University nor the names of its contributors |
| 906 | may be used to endorse or promote products derived from this software |
| 907 | without specific prior written permission. |
| 908 | |
| 909 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 910 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 911 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 912 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 913 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 914 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 915 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 916 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 917 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 918 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 919 | SUCH DAMAGE. |
| 920 | |
| 921 | ------------------------------------------------------------------- |
| 922 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 923 | Copyright (c) 1983, 1989, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 924 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 925 | |
| 926 | Redistribution and use in source and binary forms, with or without |
| 927 | modification, are permitted provided that the following conditions |
| 928 | are met: |
| 929 | 1. Redistributions of source code must retain the above copyright |
| 930 | notice, this list of conditions and the following disclaimer. |
| 931 | 2. Redistributions in binary form must reproduce the above copyright |
| 932 | notice, this list of conditions and the following disclaimer in the |
| 933 | documentation and/or other materials provided with the distribution. |
| 934 | 3. Neither the name of the University nor the names of its contributors |
| 935 | may be used to endorse or promote products derived from this software |
| 936 | without specific prior written permission. |
| 937 | |
| 938 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 939 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 940 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 941 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 942 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 943 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 944 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 945 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 946 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 947 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 948 | SUCH DAMAGE. |
| 949 | |
| 950 | ------------------------------------------------------------------- |
| 951 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 952 | Copyright (c) 1983, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 953 | The Regents of the University of California. All rights reserved. |
| 954 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 955 | Redistribution and use in source and binary forms, with or without |
| 956 | modification, are permitted provided that the following conditions |
| 957 | are met: |
| 958 | 1. Redistributions of source code must retain the above copyright |
| 959 | notice, this list of conditions and the following disclaimer. |
| 960 | 2. Redistributions in binary form must reproduce the above copyright |
| 961 | notice, this list of conditions and the following disclaimer in the |
| 962 | documentation and/or other materials provided with the distribution. |
| 963 | 3. Neither the name of the University nor the names of its contributors |
| 964 | may be used to endorse or promote products derived from this software |
| 965 | without specific prior written permission. |
| 966 | |
| 967 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 968 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 969 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 970 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 971 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 972 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 973 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 974 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 975 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 976 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 977 | SUCH DAMAGE. |
| 978 | |
| 979 | ------------------------------------------------------------------- |
| 980 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 981 | Copyright (c) 1983, 1993 |
| 982 | The Regents of the University of California. All rights reserved. |
| 983 | |
| 984 | Redistribution and use in source and binary forms, with or without |
| 985 | modification, are permitted provided that the following conditions |
| 986 | are met: |
| 987 | 1. Redistributions of source code must retain the above copyright |
| 988 | notice, this list of conditions and the following disclaimer. |
| 989 | 2. Redistributions in binary form must reproduce the above copyright |
| 990 | notice, this list of conditions and the following disclaimer in the |
| 991 | documentation and/or other materials provided with the distribution. |
| 992 | 4. Neither the name of the University nor the names of its contributors |
| 993 | may be used to endorse or promote products derived from this software |
| 994 | without specific prior written permission. |
| 995 | |
| 996 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 997 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 998 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 999 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1000 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1001 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1002 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1003 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1004 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1005 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1006 | SUCH DAMAGE. |
| 1007 | |
| 1008 | ------------------------------------------------------------------- |
| 1009 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1010 | Copyright (c) 1985 |
| 1011 | The Regents of the University of California. All rights reserved. |
| 1012 | |
| 1013 | Redistribution and use in source and binary forms, with or without |
| 1014 | modification, are permitted provided that the following conditions |
| 1015 | are met: |
| 1016 | 1. Redistributions of source code must retain the above copyright |
| 1017 | notice, this list of conditions and the following disclaimer. |
| 1018 | 2. Redistributions in binary form must reproduce the above copyright |
| 1019 | notice, this list of conditions and the following disclaimer in the |
| 1020 | documentation and/or other materials provided with the distribution. |
| 1021 | 3. All advertising materials mentioning features or use of this software |
| 1022 | must display the following acknowledgement: |
| 1023 | This product includes software developed by the University of |
| 1024 | California, Berkeley and its contributors. |
| 1025 | 4. Neither the name of the University nor the names of its contributors |
| 1026 | may be used to endorse or promote products derived from this software |
| 1027 | without specific prior written permission. |
| 1028 | |
| 1029 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1030 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1031 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1032 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1033 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1034 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1035 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1036 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1037 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1038 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1039 | SUCH DAMAGE. |
| 1040 | |
| 1041 | ------------------------------------------------------------------- |
| 1042 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1043 | Copyright (c) 1985 Regents of the University of California. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1044 | All rights reserved. |
| 1045 | |
| 1046 | Redistribution and use in source and binary forms, with or without |
| 1047 | modification, are permitted provided that the following conditions |
| 1048 | are met: |
| 1049 | 1. Redistributions of source code must retain the above copyright |
| 1050 | notice, this list of conditions and the following disclaimer. |
| 1051 | 2. Redistributions in binary form must reproduce the above copyright |
| 1052 | notice, this list of conditions and the following disclaimer in the |
| 1053 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1054 | 3. Neither the name of the University nor the names of its contributors |
| 1055 | may be used to endorse or promote products derived from this software |
| 1056 | without specific prior written permission. |
| 1057 | |
| 1058 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1059 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1060 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1061 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1062 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1063 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1064 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1065 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1066 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1067 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1068 | SUCH DAMAGE. |
| 1069 | |
| 1070 | ------------------------------------------------------------------- |
| 1071 | |
| 1072 | Copyright (c) 1985, 1988, 1993 |
| 1073 | The Regents of the University of California. All rights reserved. |
| 1074 | |
| 1075 | Redistribution and use in source and binary forms, with or without |
| 1076 | modification, are permitted provided that the following conditions |
| 1077 | are met: |
| 1078 | 1. Redistributions of source code must retain the above copyright |
| 1079 | notice, this list of conditions and the following disclaimer. |
| 1080 | 2. Redistributions in binary form must reproduce the above copyright |
| 1081 | notice, this list of conditions and the following disclaimer in the |
| 1082 | documentation and/or other materials provided with the distribution. |
| 1083 | 3. Neither the name of the University nor the names of its contributors |
| 1084 | may be used to endorse or promote products derived from this software |
| 1085 | without specific prior written permission. |
| 1086 | |
| 1087 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1088 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1089 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1090 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1091 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1092 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1093 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1094 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1095 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1096 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1097 | SUCH DAMAGE. |
| 1098 | |
| 1099 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 1100 | |
| 1101 | Permission to use, copy, modify, and distribute this software for any |
| 1102 | purpose with or without fee is hereby granted, provided that the above |
| 1103 | copyright notice and this permission notice appear in all copies, and that |
| 1104 | the name of Digital Equipment Corporation not be used in advertising or |
| 1105 | publicity pertaining to distribution of the document or software without |
| 1106 | specific, written prior permission. |
| 1107 | |
| 1108 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 1109 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 1110 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 1111 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 1112 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 1113 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 1114 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 1115 | SOFTWARE. |
| 1116 | |
| 1117 | ------------------------------------------------------------------- |
| 1118 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1119 | Copyright (c) 1985, 1989, 1993 |
| 1120 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1121 | |
| 1122 | Redistribution and use in source and binary forms, with or without |
| 1123 | modification, are permitted provided that the following conditions |
| 1124 | are met: |
| 1125 | 1. Redistributions of source code must retain the above copyright |
| 1126 | notice, this list of conditions and the following disclaimer. |
| 1127 | 2. Redistributions in binary form must reproduce the above copyright |
| 1128 | notice, this list of conditions and the following disclaimer in the |
| 1129 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1130 | 3. All advertising materials mentioning features or use of this software |
| 1131 | must display the following acknowledgement: |
| 1132 | This product includes software developed by the University of |
| 1133 | California, Berkeley and its contributors. |
| 1134 | 4. Neither the name of the University nor the names of its contributors |
| 1135 | may be used to endorse or promote products derived from this software |
| 1136 | without specific prior written permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1137 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1138 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1139 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1140 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1141 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1142 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1143 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1144 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1145 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1146 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1147 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1148 | SUCH DAMAGE. |
| 1149 | |
| 1150 | ------------------------------------------------------------------- |
| 1151 | |
| 1152 | Copyright (c) 1985, 1993 |
| 1153 | The Regents of the University of California. All rights reserved. |
| 1154 | |
| 1155 | Redistribution and use in source and binary forms, with or without |
| 1156 | modification, are permitted provided that the following conditions |
| 1157 | are met: |
| 1158 | 1. Redistributions of source code must retain the above copyright |
| 1159 | notice, this list of conditions and the following disclaimer. |
| 1160 | 2. Redistributions in binary form must reproduce the above copyright |
| 1161 | notice, this list of conditions and the following disclaimer in the |
| 1162 | documentation and/or other materials provided with the distribution. |
| 1163 | 3. All advertising materials mentioning features or use of this software |
| 1164 | must display the following acknowledgement: |
| 1165 | This product includes software developed by the University of |
| 1166 | California, Berkeley and its contributors. |
| 1167 | 4. Neither the name of the University nor the names of its contributors |
| 1168 | may be used to endorse or promote products derived from this software |
| 1169 | without specific prior written permission. |
| 1170 | |
| 1171 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1172 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1173 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1174 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1175 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1176 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1177 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1178 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1179 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1180 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1181 | SUCH DAMAGE. |
| 1182 | |
| 1183 | ------------------------------------------------------------------- |
| 1184 | |
| 1185 | Copyright (c) 1985, 1993 |
| 1186 | The Regents of the University of California. All rights reserved. |
| 1187 | |
| 1188 | Redistribution and use in source and binary forms, with or without |
| 1189 | modification, are permitted provided that the following conditions |
| 1190 | are met: |
| 1191 | 1. Redistributions of source code must retain the above copyright |
| 1192 | notice, this list of conditions and the following disclaimer. |
| 1193 | 2. Redistributions in binary form must reproduce the above copyright |
| 1194 | notice, this list of conditions and the following disclaimer in the |
| 1195 | documentation and/or other materials provided with the distribution. |
| 1196 | 3. Neither the name of the University nor the names of its contributors |
| 1197 | may be used to endorse or promote products derived from this software |
| 1198 | without specific prior written permission. |
| 1199 | |
| 1200 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1201 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1202 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1203 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1204 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1205 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1206 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1207 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1208 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1209 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1210 | SUCH DAMAGE. |
| 1211 | |
| 1212 | ------------------------------------------------------------------- |
| 1213 | |
| 1214 | Copyright (c) 1987 Regents of the University of California. |
| 1215 | All rights reserved. |
| 1216 | |
| 1217 | Redistribution and use in source and binary forms, with or without |
| 1218 | modification, are permitted provided that the following conditions |
| 1219 | are met: |
| 1220 | 1. Redistributions of source code must retain the above copyright |
| 1221 | notice, this list of conditions and the following disclaimer. |
| 1222 | 2. Redistributions in binary form must reproduce the above copyright |
| 1223 | notice, this list of conditions and the following disclaimer in the |
| 1224 | documentation and/or other materials provided with the distribution. |
| 1225 | 3. Neither the name of the University nor the names of its contributors |
| 1226 | may be used to endorse or promote products derived from this software |
| 1227 | without specific prior written permission. |
| 1228 | |
| 1229 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1230 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1231 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1232 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1233 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1234 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1235 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1236 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1237 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1238 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1239 | SUCH DAMAGE. |
| 1240 | |
| 1241 | ------------------------------------------------------------------- |
| 1242 | |
| 1243 | Copyright (c) 1987, 1993 |
| 1244 | The Regents of the University of California. All rights reserved. |
| 1245 | |
| 1246 | Redistribution and use in source and binary forms, with or without |
| 1247 | modification, are permitted provided that the following conditions |
| 1248 | are met: |
| 1249 | 1. Redistributions of source code must retain the above copyright |
| 1250 | notice, this list of conditions and the following disclaimer. |
| 1251 | 2. Redistributions in binary form must reproduce the above copyright |
| 1252 | notice, this list of conditions and the following disclaimer in the |
| 1253 | documentation and/or other materials provided with the distribution. |
| 1254 | 3. All advertising materials mentioning features or use of this software |
| 1255 | must display the following acknowledgement: |
| 1256 | This product includes software developed by the University of |
| 1257 | California, Berkeley and its contributors. |
| 1258 | 4. Neither the name of the University nor the names of its contributors |
| 1259 | may be used to endorse or promote products derived from this software |
| 1260 | without specific prior written permission. |
| 1261 | |
| 1262 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1263 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1264 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1265 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1266 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1267 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1268 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1269 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1270 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1271 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1272 | SUCH DAMAGE. |
| 1273 | |
| 1274 | ------------------------------------------------------------------- |
| 1275 | |
| 1276 | Copyright (c) 1987, 1993 |
| 1277 | The Regents of the University of California. All rights reserved. |
| 1278 | |
| 1279 | Redistribution and use in source and binary forms, with or without |
| 1280 | modification, are permitted provided that the following conditions |
| 1281 | are met: |
| 1282 | 1. Redistributions of source code must retain the above copyright |
| 1283 | notice, this list of conditions and the following disclaimer. |
| 1284 | 2. Redistributions in binary form must reproduce the above copyright |
| 1285 | notice, this list of conditions and the following disclaimer in the |
| 1286 | documentation and/or other materials provided with the distribution. |
| 1287 | 3. Neither the name of the University nor the names of its contributors |
| 1288 | may be used to endorse or promote products derived from this software |
| 1289 | without specific prior written permission. |
| 1290 | |
| 1291 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1292 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1293 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1294 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1295 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1296 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1297 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1298 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1299 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1300 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1301 | SUCH DAMAGE. |
| 1302 | |
| 1303 | ------------------------------------------------------------------- |
| 1304 | |
| 1305 | Copyright (c) 1988 Regents of the University of California. |
| 1306 | All rights reserved. |
| 1307 | |
| 1308 | Redistribution and use in source and binary forms, with or without |
| 1309 | modification, are permitted provided that the following conditions |
| 1310 | are met: |
| 1311 | 1. Redistributions of source code must retain the above copyright |
| 1312 | notice, this list of conditions and the following disclaimer. |
| 1313 | 2. Redistributions in binary form must reproduce the above copyright |
| 1314 | notice, this list of conditions and the following disclaimer in the |
| 1315 | documentation and/or other materials provided with the distribution. |
| 1316 | 3. Neither the name of the University nor the names of its contributors |
| 1317 | may be used to endorse or promote products derived from this software |
| 1318 | without specific prior written permission. |
| 1319 | |
| 1320 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1321 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1322 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1323 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1324 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1325 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1326 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1327 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1328 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1329 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1330 | SUCH DAMAGE. |
| 1331 | |
| 1332 | ------------------------------------------------------------------- |
| 1333 | |
| 1334 | Copyright (c) 1988 The Regents of the University of California. |
| 1335 | All rights reserved. |
| 1336 | |
| 1337 | Redistribution and use in source and binary forms, with or without |
| 1338 | modification, are permitted provided that the following conditions |
| 1339 | are met: |
| 1340 | 1. Redistributions of source code must retain the above copyright |
| 1341 | notice, this list of conditions and the following disclaimer. |
| 1342 | 2. Redistributions in binary form must reproduce the above copyright |
| 1343 | notice, this list of conditions and the following disclaimer in the |
| 1344 | documentation and/or other materials provided with the distribution. |
| 1345 | 3. Neither the name of the University nor the names of its contributors |
| 1346 | may be used to endorse or promote products derived from this software |
| 1347 | without specific prior written permission. |
| 1348 | |
| 1349 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1350 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1351 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1352 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1353 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1354 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1355 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1356 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1357 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1358 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1359 | SUCH DAMAGE. |
| 1360 | |
| 1361 | ------------------------------------------------------------------- |
| 1362 | |
| 1363 | Copyright (c) 1988, 1993 |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1364 | The Regents of the University of California. All rights reserved. |
| 1365 | |
| 1366 | Redistribution and use in source and binary forms, with or without |
| 1367 | modification, are permitted provided that the following conditions |
| 1368 | are met: |
| 1369 | 1. Redistributions of source code must retain the above copyright |
| 1370 | notice, this list of conditions and the following disclaimer. |
| 1371 | 2. Redistributions in binary form must reproduce the above copyright |
| 1372 | notice, this list of conditions and the following disclaimer in the |
| 1373 | documentation and/or other materials provided with the distribution. |
| 1374 | 3. All advertising materials mentioning features or use of this software |
| 1375 | must display the following acknowledgement: |
| 1376 | This product includes software developed by the University of |
| 1377 | California, Berkeley and its contributors. |
| 1378 | 4. Neither the name of the University nor the names of its contributors |
| 1379 | may be used to endorse or promote products derived from this software |
| 1380 | without specific prior written permission. |
| 1381 | |
| 1382 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1383 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1384 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1385 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1386 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1387 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1388 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1389 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1390 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1391 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1392 | SUCH DAMAGE. |
| 1393 | |
| 1394 | ------------------------------------------------------------------- |
| 1395 | |
| 1396 | Copyright (c) 1988, 1993 |
| 1397 | The Regents of the University of California. All rights reserved. |
| 1398 | |
| 1399 | Redistribution and use in source and binary forms, with or without |
| 1400 | modification, are permitted provided that the following conditions |
| 1401 | are met: |
| 1402 | 1. Redistributions of source code must retain the above copyright |
| 1403 | notice, this list of conditions and the following disclaimer. |
| 1404 | 2. Redistributions in binary form must reproduce the above copyright |
| 1405 | notice, this list of conditions and the following disclaimer in the |
| 1406 | documentation and/or other materials provided with the distribution. |
| 1407 | 3. Neither the name of the University nor the names of its contributors |
| 1408 | may be used to endorse or promote products derived from this software |
| 1409 | without specific prior written permission. |
| 1410 | |
| 1411 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1412 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1413 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1414 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1415 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1416 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1417 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1418 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1419 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1420 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1421 | SUCH DAMAGE. |
| 1422 | |
| 1423 | ------------------------------------------------------------------- |
| 1424 | |
| 1425 | Copyright (c) 1988, 1993 |
| 1426 | The Regents of the University of California. All rights reserved. |
| 1427 | |
| 1428 | This code is derived from software written by Ken Arnold and |
| 1429 | published in UNIX Review, Vol. 6, No. 8. |
| 1430 | |
| 1431 | Redistribution and use in source and binary forms, with or without |
| 1432 | modification, are permitted provided that the following conditions |
| 1433 | are met: |
| 1434 | 1. Redistributions of source code must retain the above copyright |
| 1435 | notice, this list of conditions and the following disclaimer. |
| 1436 | 2. Redistributions in binary form must reproduce the above copyright |
| 1437 | notice, this list of conditions and the following disclaimer in the |
| 1438 | documentation and/or other materials provided with the distribution. |
| 1439 | 3. Neither the name of the University nor the names of its contributors |
| 1440 | may be used to endorse or promote products derived from this software |
| 1441 | without specific prior written permission. |
| 1442 | |
| 1443 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1444 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1445 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1446 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1447 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1448 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1449 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1450 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1451 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1452 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1453 | SUCH DAMAGE. |
| 1454 | |
| 1455 | ------------------------------------------------------------------- |
| 1456 | |
| 1457 | Copyright (c) 1989 The Regents of the University of California. |
| 1458 | All rights reserved. |
| 1459 | |
| 1460 | Redistribution and use in source and binary forms are permitted |
| 1461 | provided that the above copyright notice and this paragraph are |
| 1462 | duplicated in all such forms and that any documentation, |
| 1463 | advertising materials, and other materials related to such |
| 1464 | distribution and use acknowledge that the software was developed |
| 1465 | by the University of California, Berkeley. The name of the |
| 1466 | University may not be used to endorse or promote products derived |
| 1467 | from this software without specific prior written permission. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 1468 | THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1469 | IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED |
| 1470 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
| 1471 | |
| 1472 | ------------------------------------------------------------------- |
| 1473 | |
| 1474 | Copyright (c) 1989 The Regents of the University of California. |
| 1475 | All rights reserved. |
| 1476 | |
| 1477 | Redistribution and use in source and binary forms, with or without |
| 1478 | modification, are permitted provided that the following conditions |
| 1479 | are met: |
| 1480 | 1. Redistributions of source code must retain the above copyright |
| 1481 | notice, this list of conditions and the following disclaimer. |
| 1482 | 2. Redistributions in binary form must reproduce the above copyright |
| 1483 | notice, this list of conditions and the following disclaimer in the |
| 1484 | documentation and/or other materials provided with the distribution. |
| 1485 | 3. Neither the name of the University nor the names of its contributors |
| 1486 | may be used to endorse or promote products derived from this software |
| 1487 | without specific prior written permission. |
| 1488 | |
| 1489 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1490 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1491 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1492 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1493 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1494 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1495 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1496 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1497 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1498 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1499 | SUCH DAMAGE. |
| 1500 | |
| 1501 | ------------------------------------------------------------------- |
| 1502 | |
| 1503 | Copyright (c) 1989 The Regents of the University of California. |
| 1504 | All rights reserved. |
| 1505 | (c) UNIX System Laboratories, Inc. |
| 1506 | All or some portions of this file are derived from material licensed |
| 1507 | to the University of California by American Telephone and Telegraph |
| 1508 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1509 | the permission of UNIX System Laboratories, Inc. |
| 1510 | |
| 1511 | Redistribution and use in source and binary forms, with or without |
| 1512 | modification, are permitted provided that the following conditions |
| 1513 | are met: |
| 1514 | 1. Redistributions of source code must retain the above copyright |
| 1515 | notice, this list of conditions and the following disclaimer. |
| 1516 | 2. Redistributions in binary form must reproduce the above copyright |
| 1517 | notice, this list of conditions and the following disclaimer in the |
| 1518 | documentation and/or other materials provided with the distribution. |
| 1519 | 3. Neither the name of the University nor the names of its contributors |
| 1520 | may be used to endorse or promote products derived from this software |
| 1521 | without specific prior written permission. |
| 1522 | |
| 1523 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1524 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1525 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1526 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1527 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1528 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1529 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1530 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1531 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1532 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1533 | SUCH DAMAGE. |
| 1534 | |
| 1535 | ------------------------------------------------------------------- |
| 1536 | |
| 1537 | Copyright (c) 1989, 1993 |
| 1538 | The Regents of the University of California. All rights reserved. |
| 1539 | |
| 1540 | Redistribution and use in source and binary forms, with or without |
| 1541 | modification, are permitted provided that the following conditions |
| 1542 | are met: |
| 1543 | 1. Redistributions of source code must retain the above copyright |
| 1544 | notice, this list of conditions and the following disclaimer. |
| 1545 | 2. Redistributions in binary form must reproduce the above copyright |
| 1546 | notice, this list of conditions and the following disclaimer in the |
| 1547 | documentation and/or other materials provided with the distribution. |
| 1548 | 3. Neither the name of the University nor the names of its contributors |
| 1549 | may be used to endorse or promote products derived from this software |
| 1550 | without specific prior written permission. |
| 1551 | |
| 1552 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1553 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1554 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1555 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1556 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1557 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1558 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1559 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1560 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1561 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1562 | SUCH DAMAGE. |
| 1563 | |
| 1564 | ------------------------------------------------------------------- |
| 1565 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1566 | Copyright (c) 1989, 1993 |
| 1567 | The Regents of the University of California. All rights reserved. |
| 1568 | |
| 1569 | Redistribution and use in source and binary forms, with or without |
| 1570 | modification, are permitted provided that the following conditions |
| 1571 | are met: |
| 1572 | 1. Redistributions of source code must retain the above copyright |
| 1573 | notice, this list of conditions and the following disclaimer. |
| 1574 | 2. Redistributions in binary form must reproduce the above copyright |
| 1575 | notice, this list of conditions and the following disclaimer in the |
| 1576 | documentation and/or other materials provided with the distribution. |
| 1577 | 4. Neither the name of the University nor the names of its contributors |
| 1578 | may be used to endorse or promote products derived from this software |
| 1579 | without specific prior written permission. |
| 1580 | |
| 1581 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1582 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1583 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1584 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1585 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1586 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1587 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1588 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1589 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1590 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1591 | SUCH DAMAGE. |
| 1592 | |
| 1593 | ------------------------------------------------------------------- |
| 1594 | |
| 1595 | Copyright (c) 1989, 1993 |
| 1596 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 1597 | |
| 1598 | This code is derived from software contributed to Berkeley by |
| 1599 | Roger L. Snyder. |
| 1600 | |
| 1601 | Redistribution and use in source and binary forms, with or without |
| 1602 | modification, are permitted provided that the following conditions |
| 1603 | are met: |
| 1604 | 1. Redistributions of source code must retain the above copyright |
| 1605 | notice, this list of conditions and the following disclaimer. |
| 1606 | 2. Redistributions in binary form must reproduce the above copyright |
| 1607 | notice, this list of conditions and the following disclaimer in the |
| 1608 | documentation and/or other materials provided with the distribution. |
| 1609 | 3. Neither the name of the University nor the names of its contributors |
| 1610 | may be used to endorse or promote products derived from this software |
| 1611 | without specific prior written permission. |
| 1612 | |
| 1613 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1614 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1615 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1616 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1617 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1618 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1619 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1620 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1621 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1622 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1623 | SUCH DAMAGE. |
| 1624 | |
| 1625 | ------------------------------------------------------------------- |
| 1626 | |
| 1627 | Copyright (c) 1989, 1993 |
| 1628 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1629 | (c) UNIX System Laboratories, Inc. |
| 1630 | All or some portions of this file are derived from material licensed |
| 1631 | to the University of California by American Telephone and Telegraph |
| 1632 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1633 | the permission of UNIX System Laboratories, Inc. |
| 1634 | |
| 1635 | Redistribution and use in source and binary forms, with or without |
| 1636 | modification, are permitted provided that the following conditions |
| 1637 | are met: |
| 1638 | 1. Redistributions of source code must retain the above copyright |
| 1639 | notice, this list of conditions and the following disclaimer. |
| 1640 | 2. Redistributions in binary form must reproduce the above copyright |
| 1641 | notice, this list of conditions and the following disclaimer in the |
| 1642 | documentation and/or other materials provided with the distribution. |
| 1643 | 3. Neither the name of the University nor the names of its contributors |
| 1644 | may be used to endorse or promote products derived from this software |
| 1645 | without specific prior written permission. |
| 1646 | |
| 1647 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1648 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1649 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1650 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1651 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1652 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1653 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1654 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1655 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1656 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1657 | SUCH DAMAGE. |
| 1658 | |
| 1659 | ------------------------------------------------------------------- |
| 1660 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 1661 | Copyright (c) 1990 Regents of the University of California. |
| 1662 | All rights reserved. |
| 1663 | |
| 1664 | This code is derived from software contributed to Berkeley by |
| 1665 | Chris Torek. |
| 1666 | |
| 1667 | Redistribution and use in source and binary forms, with or without |
| 1668 | modification, are permitted provided that the following conditions |
| 1669 | are met: |
| 1670 | 1. Redistributions of source code must retain the above copyright |
| 1671 | notice, this list of conditions and the following disclaimer. |
| 1672 | 2. Redistributions in binary form must reproduce the above copyright |
| 1673 | notice, this list of conditions and the following disclaimer in the |
| 1674 | documentation and/or other materials provided with the distribution. |
| 1675 | 3. Neither the name of the University nor the names of its contributors |
| 1676 | may be used to endorse or promote products derived from this software |
| 1677 | without specific prior written permission. |
| 1678 | |
| 1679 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1680 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1681 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1682 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1683 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1684 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1685 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1686 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1687 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1688 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1689 | SUCH DAMAGE. |
| 1690 | |
| 1691 | ------------------------------------------------------------------- |
| 1692 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1693 | Copyright (c) 1990 The Regents of the University of California. |
| 1694 | All rights reserved. |
| 1695 | |
| 1696 | Redistribution and use in source and binary forms, with or without |
| 1697 | modification, are permitted provided that the following conditions |
| 1698 | are met: |
| 1699 | 1. Redistributions of source code must retain the above copyright |
| 1700 | notice, this list of conditions and the following disclaimer. |
| 1701 | 2. Redistributions in binary form must reproduce the above copyright |
| 1702 | notice, this list of conditions and the following disclaimer in the |
| 1703 | documentation and/or other materials provided with the distribution. |
| 1704 | 3. Neither the name of the University nor the names of its contributors |
| 1705 | may be used to endorse or promote products derived from this software |
| 1706 | without specific prior written permission. |
| 1707 | |
| 1708 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1709 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1710 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1711 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1712 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1713 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1714 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1715 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1716 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1717 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1718 | SUCH DAMAGE. |
| 1719 | |
| 1720 | ------------------------------------------------------------------- |
| 1721 | |
| 1722 | Copyright (c) 1990 The Regents of the University of California. |
| 1723 | All rights reserved. |
| 1724 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1725 | This code is derived from software contributed to Berkeley by |
| 1726 | Chris Torek. |
| 1727 | |
| 1728 | Redistribution and use in source and binary forms, with or without |
| 1729 | modification, are permitted provided that the following conditions |
| 1730 | are met: |
| 1731 | 1. Redistributions of source code must retain the above copyright |
| 1732 | notice, this list of conditions and the following disclaimer. |
| 1733 | 2. Redistributions in binary form must reproduce the above copyright |
| 1734 | notice, this list of conditions and the following disclaimer in the |
| 1735 | documentation and/or other materials provided with the distribution. |
| 1736 | 3. Neither the name of the University nor the names of its contributors |
| 1737 | may be used to endorse or promote products derived from this software |
| 1738 | without specific prior written permission. |
| 1739 | |
| 1740 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1741 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1742 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1743 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1744 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1745 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1746 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1747 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1748 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1749 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1750 | SUCH DAMAGE. |
| 1751 | |
| 1752 | ------------------------------------------------------------------- |
| 1753 | |
| 1754 | Copyright (c) 1990 The Regents of the University of California. |
| 1755 | All rights reserved. |
| 1756 | |
| 1757 | This code is derived from software contributed to Berkeley by |
| 1758 | William Jolitz. |
| 1759 | |
| 1760 | Redistribution and use in source and binary forms, with or without |
| 1761 | modification, are permitted provided that the following conditions |
| 1762 | are met: |
| 1763 | 1. Redistributions of source code must retain the above copyright |
| 1764 | notice, this list of conditions and the following disclaimer. |
| 1765 | 2. Redistributions in binary form must reproduce the above copyright |
| 1766 | notice, this list of conditions and the following disclaimer in the |
| 1767 | documentation and/or other materials provided with the distribution. |
| 1768 | 3. Neither the name of the University nor the names of its contributors |
| 1769 | may be used to endorse or promote products derived from this software |
| 1770 | without specific prior written permission. |
| 1771 | |
| 1772 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1773 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1774 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1775 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1776 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1777 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1778 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1779 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1780 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1781 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1782 | SUCH DAMAGE. |
| 1783 | |
| 1784 | ------------------------------------------------------------------- |
| 1785 | |
| 1786 | Copyright (c) 1990, 1993 |
| 1787 | The Regents of the University of California. All rights reserved. |
| 1788 | |
| 1789 | Redistribution and use in source and binary forms, with or without |
| 1790 | modification, are permitted provided that the following conditions |
| 1791 | are met: |
| 1792 | 1. Redistributions of source code must retain the above copyright |
| 1793 | notice, this list of conditions and the following disclaimer. |
| 1794 | 2. Redistributions in binary form must reproduce the above copyright |
| 1795 | notice, this list of conditions and the following disclaimer in the |
| 1796 | documentation and/or other materials provided with the distribution. |
| 1797 | 3. Neither the name of the University nor the names of its contributors |
| 1798 | may be used to endorse or promote products derived from this software |
| 1799 | without specific prior written permission. |
| 1800 | |
| 1801 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1802 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1803 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1804 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1805 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1806 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1807 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1808 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1809 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1810 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1811 | SUCH DAMAGE. |
| 1812 | |
| 1813 | ------------------------------------------------------------------- |
| 1814 | |
| 1815 | Copyright (c) 1990, 1993 |
| 1816 | The Regents of the University of California. All rights reserved. |
| 1817 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1818 | This code is derived from software contributed to Berkeley by |
| 1819 | Chris Torek. |
| 1820 | |
| 1821 | Redistribution and use in source and binary forms, with or without |
| 1822 | modification, are permitted provided that the following conditions |
| 1823 | are met: |
| 1824 | 1. Redistributions of source code must retain the above copyright |
| 1825 | notice, this list of conditions and the following disclaimer. |
| 1826 | 2. Redistributions in binary form must reproduce the above copyright |
| 1827 | notice, this list of conditions and the following disclaimer in the |
| 1828 | documentation and/or other materials provided with the distribution. |
| 1829 | 3. Neither the name of the University nor the names of its contributors |
| 1830 | may be used to endorse or promote products derived from this software |
| 1831 | without specific prior written permission. |
| 1832 | |
| 1833 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1834 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1835 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1836 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1837 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1838 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1839 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1840 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1841 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1842 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1843 | SUCH DAMAGE. |
| 1844 | |
| 1845 | ------------------------------------------------------------------- |
| 1846 | |
| 1847 | Copyright (c) 1990, 1993 |
| 1848 | The Regents of the University of California. All rights reserved. |
| 1849 | |
| 1850 | This code is derived from software contributed to Berkeley by |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1851 | Donn Seeley at UUNET Technologies, Inc. |
| 1852 | |
| 1853 | Redistribution and use in source and binary forms, with or without |
| 1854 | modification, are permitted provided that the following conditions |
| 1855 | are met: |
| 1856 | 1. Redistributions of source code must retain the above copyright |
| 1857 | notice, this list of conditions and the following disclaimer. |
| 1858 | 2. Redistributions in binary form must reproduce the above copyright |
| 1859 | notice, this list of conditions and the following disclaimer in the |
| 1860 | documentation and/or other materials provided with the distribution. |
| 1861 | 3. Neither the name of the University nor the names of its contributors |
| 1862 | may be used to endorse or promote products derived from this software |
| 1863 | without specific prior written permission. |
| 1864 | |
| 1865 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1866 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1867 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1868 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1869 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1870 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1871 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1872 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1873 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1874 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1875 | SUCH DAMAGE. |
| 1876 | |
| 1877 | ------------------------------------------------------------------- |
| 1878 | |
| 1879 | Copyright (c) 1990, 1993 |
| 1880 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 1881 | |
| 1882 | This code is derived from software contributed to Berkeley by |
| 1883 | Donn Seeley at UUNET Technologies, Inc. |
| 1884 | |
| 1885 | Redistribution and use in source and binary forms, with or without |
| 1886 | modification, are permitted provided that the following conditions |
| 1887 | are met: |
| 1888 | 1. Redistributions of source code must retain the above copyright |
| 1889 | notice, this list of conditions and the following disclaimer. |
| 1890 | 2. Redistributions in binary form must reproduce the above copyright |
| 1891 | notice, this list of conditions and the following disclaimer in the |
| 1892 | documentation and/or other materials provided with the distribution. |
| 1893 | 4. Neither the name of the University nor the names of its contributors |
| 1894 | may be used to endorse or promote products derived from this software |
| 1895 | without specific prior written permission. |
| 1896 | |
| 1897 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1898 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1899 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1900 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1901 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1902 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1903 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1904 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1905 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1906 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1907 | SUCH DAMAGE. |
| 1908 | |
| 1909 | ------------------------------------------------------------------- |
| 1910 | |
| 1911 | Copyright (c) 1990, 1993 |
| 1912 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1913 | (c) UNIX System Laboratories, Inc. |
| 1914 | All or some portions of this file are derived from material licensed |
| 1915 | to the University of California by American Telephone and Telegraph |
| 1916 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1917 | the permission of UNIX System Laboratories, Inc. |
| 1918 | |
| 1919 | Redistribution and use in source and binary forms, with or without |
| 1920 | modification, are permitted provided that the following conditions |
| 1921 | are met: |
| 1922 | 1. Redistributions of source code must retain the above copyright |
| 1923 | notice, this list of conditions and the following disclaimer. |
| 1924 | 2. Redistributions in binary form must reproduce the above copyright |
| 1925 | notice, this list of conditions and the following disclaimer in the |
| 1926 | documentation and/or other materials provided with the distribution. |
| 1927 | 3. Neither the name of the University nor the names of its contributors |
| 1928 | may be used to endorse or promote products derived from this software |
| 1929 | without specific prior written permission. |
| 1930 | |
| 1931 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1932 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1933 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1934 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1935 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1936 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1937 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1938 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1939 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1940 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1941 | SUCH DAMAGE. |
| 1942 | |
| 1943 | ------------------------------------------------------------------- |
| 1944 | |
| 1945 | Copyright (c) 1990, 1993, 1994 |
| 1946 | The Regents of the University of California. All rights reserved. |
| 1947 | |
| 1948 | Redistribution and use in source and binary forms, with or without |
| 1949 | modification, are permitted provided that the following conditions |
| 1950 | are met: |
| 1951 | 1. Redistributions of source code must retain the above copyright |
| 1952 | notice, this list of conditions and the following disclaimer. |
| 1953 | 2. Redistributions in binary form must reproduce the above copyright |
| 1954 | notice, this list of conditions and the following disclaimer in the |
| 1955 | documentation and/or other materials provided with the distribution. |
| 1956 | 3. Neither the name of the University nor the names of its contributors |
| 1957 | may be used to endorse or promote products derived from this software |
| 1958 | without specific prior written permission. |
| 1959 | |
| 1960 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1961 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1962 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1963 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1964 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1965 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1966 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1967 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1968 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1969 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1970 | SUCH DAMAGE. |
| 1971 | |
| 1972 | ------------------------------------------------------------------- |
| 1973 | |
| 1974 | Copyright (c) 1990, 1993, 1994 |
| 1975 | The Regents of the University of California. All rights reserved. |
| 1976 | |
| 1977 | This code is derived from software contributed to Berkeley by |
| 1978 | Chris Torek. |
| 1979 | |
| 1980 | Redistribution and use in source and binary forms, with or without |
| 1981 | modification, are permitted provided that the following conditions |
| 1982 | are met: |
| 1983 | 1. Redistributions of source code must retain the above copyright |
| 1984 | notice, this list of conditions and the following disclaimer. |
| 1985 | 2. Redistributions in binary form must reproduce the above copyright |
| 1986 | notice, this list of conditions and the following disclaimer in the |
| 1987 | documentation and/or other materials provided with the distribution. |
| 1988 | 3. Neither the name of the University nor the names of its contributors |
| 1989 | may be used to endorse or promote products derived from this software |
| 1990 | without specific prior written permission. |
| 1991 | |
| 1992 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1993 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1994 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1995 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1996 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1997 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1998 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1999 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2000 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2001 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2002 | SUCH DAMAGE. |
| 2003 | |
| 2004 | ------------------------------------------------------------------- |
| 2005 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2006 | Copyright (c) 1991 The Regents of the University of California. |
| 2007 | All rights reserved. |
| 2008 | |
| 2009 | Redistribution and use in source and binary forms, with or without |
| 2010 | modification, are permitted provided that the following conditions |
| 2011 | are met: |
| 2012 | 1. Redistributions of source code must retain the above copyright |
| 2013 | notice, this list of conditions and the following disclaimer. |
| 2014 | 2. Redistributions in binary form must reproduce the above copyright |
| 2015 | notice, this list of conditions and the following disclaimer in the |
| 2016 | documentation and/or other materials provided with the distribution. |
| 2017 | 3. Neither the name of the University nor the names of its contributors |
| 2018 | may be used to endorse or promote products derived from this software |
| 2019 | without specific prior written permission. |
| 2020 | |
| 2021 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2022 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2023 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2024 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2025 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2026 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2027 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2028 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2029 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2030 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2031 | SUCH DAMAGE. |
| 2032 | |
| 2033 | ------------------------------------------------------------------- |
| 2034 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2035 | Copyright (c) 1991, 1993 |
| 2036 | The Regents of the University of California. All rights reserved. |
| 2037 | |
| 2038 | Redistribution and use in source and binary forms, with or without |
| 2039 | modification, are permitted provided that the following conditions |
| 2040 | are met: |
| 2041 | 1. Redistributions of source code must retain the above copyright |
| 2042 | notice, this list of conditions and the following disclaimer. |
| 2043 | 2. Redistributions in binary form must reproduce the above copyright |
| 2044 | notice, this list of conditions and the following disclaimer in the |
| 2045 | documentation and/or other materials provided with the distribution. |
| 2046 | 3. Neither the name of the University nor the names of its contributors |
| 2047 | may be used to endorse or promote products derived from this software |
| 2048 | without specific prior written permission. |
| 2049 | |
| 2050 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2051 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2052 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2053 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2054 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2055 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2056 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2057 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2058 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2059 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2060 | SUCH DAMAGE. |
| 2061 | |
| 2062 | ------------------------------------------------------------------- |
| 2063 | |
| 2064 | Copyright (c) 1991, 1993 |
| 2065 | The Regents of the University of California. All rights reserved. |
| 2066 | |
| 2067 | This code is derived from software contributed to Berkeley by |
| 2068 | Berkeley Software Design, Inc. |
| 2069 | |
| 2070 | Redistribution and use in source and binary forms, with or without |
| 2071 | modification, are permitted provided that the following conditions |
| 2072 | are met: |
| 2073 | 1. Redistributions of source code must retain the above copyright |
| 2074 | notice, this list of conditions and the following disclaimer. |
| 2075 | 2. Redistributions in binary form must reproduce the above copyright |
| 2076 | notice, this list of conditions and the following disclaimer in the |
| 2077 | documentation and/or other materials provided with the distribution. |
| 2078 | 3. Neither the name of the University nor the names of its contributors |
| 2079 | may be used to endorse or promote products derived from this software |
| 2080 | without specific prior written permission. |
| 2081 | |
| 2082 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2083 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2084 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2085 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2086 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2087 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2088 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2089 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2090 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2091 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2092 | SUCH DAMAGE. |
| 2093 | |
| 2094 | ------------------------------------------------------------------- |
| 2095 | |
| 2096 | Copyright (c) 1991, 1993 |
| 2097 | The Regents of the University of California. All rights reserved. |
| 2098 | (c) UNIX System Laboratories, Inc. |
| 2099 | All or some portions of this file are derived from material licensed |
| 2100 | to the University of California by American Telephone and Telegraph |
| 2101 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2102 | the permission of UNIX System Laboratories, Inc. |
| 2103 | |
| 2104 | This code is derived from software contributed to Berkeley by |
| 2105 | Hugh Smith at The University of Guelph. |
| 2106 | |
| 2107 | Redistribution and use in source and binary forms, with or without |
| 2108 | modification, are permitted provided that the following conditions |
| 2109 | are met: |
| 2110 | 1. Redistributions of source code must retain the above copyright |
| 2111 | notice, this list of conditions and the following disclaimer. |
| 2112 | 2. Redistributions in binary form must reproduce the above copyright |
| 2113 | notice, this list of conditions and the following disclaimer in the |
| 2114 | documentation and/or other materials provided with the distribution. |
| 2115 | 3. Neither the name of the University nor the names of its contributors |
| 2116 | may be used to endorse or promote products derived from this software |
| 2117 | without specific prior written permission. |
| 2118 | |
| 2119 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2120 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2121 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2122 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2123 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2124 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2125 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2126 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2127 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2128 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2129 | SUCH DAMAGE. |
| 2130 | |
| 2131 | ------------------------------------------------------------------- |
| 2132 | |
| 2133 | Copyright (c) 1991, 1993, 1995, |
| 2134 | The Regents of the University of California. All rights reserved. |
| 2135 | |
| 2136 | This code is derived from software contributed to Berkeley by |
| 2137 | Havard Eidnes. |
| 2138 | |
| 2139 | Redistribution and use in source and binary forms, with or without |
| 2140 | modification, are permitted provided that the following conditions |
| 2141 | are met: |
| 2142 | 1. Redistributions of source code must retain the above copyright |
| 2143 | notice, this list of conditions and the following disclaimer. |
| 2144 | 2. Redistributions in binary form must reproduce the above copyright |
| 2145 | notice, this list of conditions and the following disclaimer in the |
| 2146 | documentation and/or other materials provided with the distribution. |
| 2147 | 3. Neither the name of the University nor the names of its contributors |
| 2148 | may be used to endorse or promote products derived from this software |
| 2149 | without specific prior written permission. |
| 2150 | |
| 2151 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2152 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2153 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2154 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2155 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2156 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2157 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2158 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2159 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2160 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2161 | SUCH DAMAGE. |
| 2162 | |
| 2163 | ------------------------------------------------------------------- |
| 2164 | |
| 2165 | Copyright (c) 1992 Henry Spencer. |
| 2166 | Copyright (c) 1992, 1993 |
| 2167 | The Regents of the University of California. All rights reserved. |
| 2168 | |
| 2169 | This code is derived from software contributed to Berkeley by |
| 2170 | Henry Spencer of the University of Toronto. |
| 2171 | |
| 2172 | Redistribution and use in source and binary forms, with or without |
| 2173 | modification, are permitted provided that the following conditions |
| 2174 | are met: |
| 2175 | 1. Redistributions of source code must retain the above copyright |
| 2176 | notice, this list of conditions and the following disclaimer. |
| 2177 | 2. Redistributions in binary form must reproduce the above copyright |
| 2178 | notice, this list of conditions and the following disclaimer in the |
| 2179 | documentation and/or other materials provided with the distribution. |
| 2180 | 3. Neither the name of the University nor the names of its contributors |
| 2181 | may be used to endorse or promote products derived from this software |
| 2182 | without specific prior written permission. |
| 2183 | |
| 2184 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2185 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2186 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2187 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2188 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2189 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2190 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2191 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2192 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2193 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2194 | SUCH DAMAGE. |
| 2195 | |
| 2196 | ------------------------------------------------------------------- |
| 2197 | |
| 2198 | Copyright (c) 1992 The Regents of the University of California. |
| 2199 | All rights reserved. |
| 2200 | |
| 2201 | Redistribution and use in source and binary forms, with or without |
| 2202 | modification, are permitted provided that the following conditions |
| 2203 | are met: |
| 2204 | 1. Redistributions of source code must retain the above copyright |
| 2205 | notice, this list of conditions and the following disclaimer. |
| 2206 | 2. Redistributions in binary form must reproduce the above copyright |
| 2207 | notice, this list of conditions and the following disclaimer in the |
| 2208 | documentation and/or other materials provided with the distribution. |
| 2209 | 3. Neither the name of the University nor the names of its contributors |
| 2210 | may be used to endorse or promote products derived from this software |
| 2211 | without specific prior written permission. |
| 2212 | |
| 2213 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2214 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2215 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2216 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2217 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2218 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2219 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2220 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2221 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2222 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2223 | SUCH DAMAGE. |
| 2224 | |
| 2225 | ------------------------------------------------------------------- |
| 2226 | |
| 2227 | Copyright (c) 1992, 1993 |
| 2228 | The Regents of the University of California. All rights reserved. |
| 2229 | |
| 2230 | Redistribution and use in source and binary forms, with or without |
| 2231 | modification, are permitted provided that the following conditions |
| 2232 | are met: |
| 2233 | 1. Redistributions of source code must retain the above copyright |
| 2234 | notice, this list of conditions and the following disclaimer. |
| 2235 | 2. Redistributions in binary form must reproduce the above copyright |
| 2236 | notice, this list of conditions and the following disclaimer in the |
| 2237 | documentation and/or other materials provided with the distribution. |
| 2238 | 3. Neither the name of the University nor the names of its contributors |
| 2239 | may be used to endorse or promote products derived from this software |
| 2240 | without specific prior written permission. |
| 2241 | |
| 2242 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2243 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2244 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2245 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2246 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2247 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2248 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2249 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2250 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2251 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2252 | SUCH DAMAGE. |
| 2253 | |
| 2254 | ------------------------------------------------------------------- |
| 2255 | |
| 2256 | Copyright (c) 1992, 1993 |
| 2257 | The Regents of the University of California. All rights reserved. |
| 2258 | |
| 2259 | This code is derived from software contributed to Berkeley by |
| 2260 | Ralph Campbell. |
| 2261 | |
| 2262 | Redistribution and use in source and binary forms, with or without |
| 2263 | modification, are permitted provided that the following conditions |
| 2264 | are met: |
| 2265 | 1. Redistributions of source code must retain the above copyright |
| 2266 | notice, this list of conditions and the following disclaimer. |
| 2267 | 2. Redistributions in binary form must reproduce the above copyright |
| 2268 | notice, this list of conditions and the following disclaimer in the |
| 2269 | documentation and/or other materials provided with the distribution. |
| 2270 | 3. Neither the name of the University nor the names of its contributors |
| 2271 | may be used to endorse or promote products derived from this software |
| 2272 | without specific prior written permission. |
| 2273 | |
| 2274 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2275 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2276 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2277 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2278 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2279 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2280 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2281 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2282 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2283 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2284 | SUCH DAMAGE. |
| 2285 | |
| 2286 | ------------------------------------------------------------------- |
| 2287 | |
| 2288 | Copyright (c) 1992, 1993 |
| 2289 | The Regents of the University of California. All rights reserved. |
| 2290 | |
| 2291 | This code is derived from software contributed to Berkeley by |
| 2292 | Ralph Campbell. This file is derived from the MIPS RISC |
| 2293 | Architecture book by Gerry Kane. |
| 2294 | |
| 2295 | Redistribution and use in source and binary forms, with or without |
| 2296 | modification, are permitted provided that the following conditions |
| 2297 | are met: |
| 2298 | 1. Redistributions of source code must retain the above copyright |
| 2299 | notice, this list of conditions and the following disclaimer. |
| 2300 | 2. Redistributions in binary form must reproduce the above copyright |
| 2301 | notice, this list of conditions and the following disclaimer in the |
| 2302 | documentation and/or other materials provided with the distribution. |
| 2303 | 3. Neither the name of the University nor the names of its contributors |
| 2304 | may be used to endorse or promote products derived from this software |
| 2305 | without specific prior written permission. |
| 2306 | |
| 2307 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2308 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2309 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2310 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2311 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2312 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2313 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2314 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2315 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2316 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2317 | SUCH DAMAGE. |
| 2318 | |
| 2319 | ------------------------------------------------------------------- |
| 2320 | |
| 2321 | Copyright (c) 1992, 1993 |
| 2322 | The Regents of the University of California. All rights reserved. |
| 2323 | |
| 2324 | This software was developed by the Computer Systems Engineering group |
| 2325 | at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and |
| 2326 | contributed to Berkeley. |
| 2327 | |
| 2328 | All advertising materials mentioning features or use of this software |
| 2329 | must display the following acknowledgement: |
| 2330 | This product includes software developed by the University of |
| 2331 | California, Lawrence Berkeley Laboratory. |
| 2332 | |
| 2333 | Redistribution and use in source and binary forms, with or without |
| 2334 | modification, are permitted provided that the following conditions |
| 2335 | are met: |
| 2336 | 1. Redistributions of source code must retain the above copyright |
| 2337 | notice, this list of conditions and the following disclaimer. |
| 2338 | 2. Redistributions in binary form must reproduce the above copyright |
| 2339 | notice, this list of conditions and the following disclaimer in the |
| 2340 | documentation and/or other materials provided with the distribution. |
| 2341 | 3. All advertising materials mentioning features or use of this software |
| 2342 | must display the following acknowledgement: |
| 2343 | This product includes software developed by the University of |
| 2344 | California, Berkeley and its contributors. |
| 2345 | 4. Neither the name of the University nor the names of its contributors |
| 2346 | may be used to endorse or promote products derived from this software |
| 2347 | without specific prior written permission. |
| 2348 | |
| 2349 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2350 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2351 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2352 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2353 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2354 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2355 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2356 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2357 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2358 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2359 | SUCH DAMAGE. |
| 2360 | |
| 2361 | ------------------------------------------------------------------- |
| 2362 | |
| 2363 | Copyright (c) 1992, 1993 |
| 2364 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2365 | (c) UNIX System Laboratories, Inc. |
| 2366 | All or some portions of this file are derived from material licensed |
| 2367 | to the University of California by American Telephone and Telegraph |
| 2368 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2369 | the permission of UNIX System Laboratories, Inc. |
| 2370 | |
| 2371 | Redistribution and use in source and binary forms, with or without |
| 2372 | modification, are permitted provided that the following conditions |
| 2373 | are met: |
| 2374 | 1. Redistributions of source code must retain the above copyright |
| 2375 | notice, this list of conditions and the following disclaimer. |
| 2376 | 2. Redistributions in binary form must reproduce the above copyright |
| 2377 | notice, this list of conditions and the following disclaimer in the |
| 2378 | documentation and/or other materials provided with the distribution. |
| 2379 | 3. Neither the name of the University nor the names of its contributors |
| 2380 | may be used to endorse or promote products derived from this software |
| 2381 | without specific prior written permission. |
| 2382 | |
| 2383 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2384 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2385 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2386 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2387 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2388 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2389 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2390 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2391 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2392 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2393 | SUCH DAMAGE. |
| 2394 | |
| 2395 | ------------------------------------------------------------------- |
| 2396 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2397 | Copyright (c) 1992, 1993, 1994 |
| 2398 | The Regents of the University of California. All rights reserved. |
| 2399 | |
| 2400 | This code is derived from software contributed to Berkeley by |
| 2401 | Henry Spencer. |
| 2402 | |
| 2403 | Redistribution and use in source and binary forms, with or without |
| 2404 | modification, are permitted provided that the following conditions |
| 2405 | are met: |
| 2406 | 1. Redistributions of source code must retain the above copyright |
| 2407 | notice, this list of conditions and the following disclaimer. |
| 2408 | 2. Redistributions in binary form must reproduce the above copyright |
| 2409 | notice, this list of conditions and the following disclaimer in the |
| 2410 | documentation and/or other materials provided with the distribution. |
| 2411 | 3. Neither the name of the University nor the names of its contributors |
| 2412 | may be used to endorse or promote products derived from this software |
| 2413 | without specific prior written permission. |
| 2414 | |
| 2415 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2416 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2417 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2418 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2419 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2420 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2421 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2422 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2423 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2424 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2425 | SUCH DAMAGE. |
| 2426 | |
| 2427 | ------------------------------------------------------------------- |
| 2428 | |
Elliott Hughes | cc213f8 | 2012-08-14 15:32:42 -0700 | [diff] [blame] | 2429 | Copyright (c) 1992, 1993, 1994 Henry Spencer. |
| 2430 | |
| 2431 | This code is derived from software contributed to Berkeley by |
| 2432 | Henry Spencer. |
| 2433 | |
| 2434 | Redistribution and use in source and binary forms, with or without |
| 2435 | modification, are permitted provided that the following conditions |
| 2436 | are met: |
| 2437 | 1. Redistributions of source code must retain the above copyright |
| 2438 | notice, this list of conditions and the following disclaimer. |
| 2439 | 2. Redistributions in binary form must reproduce the above copyright |
| 2440 | notice, this list of conditions and the following disclaimer in the |
| 2441 | documentation and/or other materials provided with the distribution. |
| 2442 | 3. All advertising materials mentioning features or use of this software |
| 2443 | must display the following acknowledgement: |
| 2444 | This product includes software developed by the University of |
| 2445 | California, Berkeley and its contributors. |
| 2446 | 4. Neither the name of the University nor the names of its contributors |
| 2447 | may be used to endorse or promote products derived from this software |
| 2448 | without specific prior written permission. |
| 2449 | |
| 2450 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2451 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2452 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2453 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2454 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2455 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2456 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2457 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2458 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2459 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2460 | SUCH DAMAGE. |
| 2461 | |
| 2462 | ------------------------------------------------------------------- |
| 2463 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2464 | Copyright (c) 1993 |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2465 | The Regents of the University of California. All rights reserved. |
| 2466 | |
| 2467 | Redistribution and use in source and binary forms, with or without |
| 2468 | modification, are permitted provided that the following conditions |
| 2469 | are met: |
| 2470 | 1. Redistributions of source code must retain the above copyright |
| 2471 | notice, this list of conditions and the following disclaimer. |
| 2472 | 2. Redistributions in binary form must reproduce the above copyright |
| 2473 | notice, this list of conditions and the following disclaimer in the |
| 2474 | documentation and/or other materials provided with the distribution. |
| 2475 | 3. Neither the name of the University nor the names of its contributors |
| 2476 | may be used to endorse or promote products derived from this software |
| 2477 | without specific prior written permission. |
| 2478 | |
| 2479 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2480 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2481 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2482 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2483 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2484 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2485 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2486 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2487 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2488 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2489 | SUCH DAMAGE. |
| 2490 | |
| 2491 | ------------------------------------------------------------------- |
| 2492 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2493 | Copyright (c) 1993 Martin Birgmeier |
| 2494 | All rights reserved. |
| 2495 | |
| 2496 | You may redistribute unmodified or modified versions of this source |
| 2497 | code provided that the above copyright notice and this and the |
| 2498 | following conditions are retained. |
| 2499 | |
| 2500 | This software is provided ``as is'', and comes with no warranties |
| 2501 | of any kind. I shall in no event be liable for anything that happens |
| 2502 | to anyone/anything when using this software. |
| 2503 | |
| 2504 | ------------------------------------------------------------------- |
| 2505 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2506 | Copyright (c) 1994 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2507 | All rights reserved. |
| 2508 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2509 | Redistribution and use in source and binary forms, with or without |
| 2510 | modification, are permitted provided that the following conditions |
| 2511 | are met: |
| 2512 | 1. Redistributions of source code must retain the above copyright |
| 2513 | notice, this list of conditions and the following disclaimer. |
| 2514 | 2. Redistributions in binary form must reproduce the above copyright |
| 2515 | notice, this list of conditions and the following disclaimer in the |
| 2516 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2517 | 3. The name of the author may not be used to endorse or promote products |
| 2518 | derived from this software without specific prior written permission. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2519 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2520 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2521 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2522 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2523 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 2524 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 2525 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 2526 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 2527 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 2528 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 2529 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2530 | |
| 2531 | ------------------------------------------------------------------- |
| 2532 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2533 | Copyright (c) 1996 by Internet Software Consortium. |
| 2534 | |
| 2535 | Permission to use, copy, modify, and distribute this software for any |
| 2536 | purpose with or without fee is hereby granted, provided that the above |
| 2537 | copyright notice and this permission notice appear in all copies. |
| 2538 | |
| 2539 | THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS |
| 2540 | ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES |
| 2541 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE |
| 2542 | CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 2543 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 2544 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 2545 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 2546 | SOFTWARE. |
| 2547 | |
| 2548 | ------------------------------------------------------------------- |
| 2549 | |
| 2550 | Copyright (c) 1996, David Mazieres <dm@uun.org> |
| 2551 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 2552 | Copyright (c) 2013, Markus Friedl <markus@openbsd.org> |
| 2553 | |
| 2554 | Permission to use, copy, modify, and distribute this software for any |
| 2555 | purpose with or without fee is hereby granted, provided that the above |
| 2556 | copyright notice and this permission notice appear in all copies. |
| 2557 | |
| 2558 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2559 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2560 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2561 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2562 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2563 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2564 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2565 | |
| 2566 | ------------------------------------------------------------------- |
| 2567 | |
| 2568 | Copyright (c) 1996-1998, 2008 Theo de Raadt |
| 2569 | Copyright (c) 1997, 2008-2009 Todd C. Miller |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2570 | |
| 2571 | Permission to use, copy, modify, and distribute this software for any |
| 2572 | purpose with or without fee is hereby granted, provided that the above |
| 2573 | copyright notice and this permission notice appear in all copies. |
| 2574 | |
| 2575 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2576 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2577 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2578 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2579 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2580 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2581 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2582 | |
| 2583 | ------------------------------------------------------------------- |
| 2584 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2585 | Copyright (c) 1997 Mark Brinicombe |
| 2586 | Copyright (c) 2010 Android Open Source Project. |
| 2587 | All rights reserved. |
| 2588 | |
| 2589 | Redistribution and use in source and binary forms, with or without |
| 2590 | modification, are permitted provided that the following conditions |
| 2591 | are met: |
| 2592 | 1. Redistributions of source code must retain the above copyright |
| 2593 | notice, this list of conditions and the following disclaimer. |
| 2594 | 2. Redistributions in binary form must reproduce the above copyright |
| 2595 | notice, this list of conditions and the following disclaimer in the |
| 2596 | documentation and/or other materials provided with the distribution. |
| 2597 | 3. All advertising materials mentioning features or use of this software |
| 2598 | must display the following acknowledgement: |
| 2599 | This product includes software developed by Mark Brinicombe |
| 2600 | 4. Neither the name of the University nor the names of its contributors |
| 2601 | may be used to endorse or promote products derived from this software |
| 2602 | without specific prior written permission. |
| 2603 | |
| 2604 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 2605 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2606 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2607 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 2608 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2609 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2610 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2611 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2612 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2613 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2614 | SUCH DAMAGE. |
| 2615 | |
| 2616 | ------------------------------------------------------------------- |
| 2617 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2618 | Copyright (c) 1997 Niklas Hallqvist. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2619 | |
| 2620 | Redistribution and use in source and binary forms, with or without |
| 2621 | modification, are permitted provided that the following conditions |
| 2622 | are met: |
| 2623 | 1. Redistributions of source code must retain the above copyright |
| 2624 | notice, this list of conditions and the following disclaimer. |
| 2625 | 2. Redistributions in binary form must reproduce the above copyright |
| 2626 | notice, this list of conditions and the following disclaimer in the |
| 2627 | documentation and/or other materials provided with the distribution. |
| 2628 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2629 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2630 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2631 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2632 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 2633 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 2634 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 2635 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 2636 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 2637 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 2638 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2639 | |
| 2640 | ------------------------------------------------------------------- |
| 2641 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2642 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2643 | |
| 2644 | Permission to use, copy, modify, and distribute this software for any |
| 2645 | purpose with or without fee is hereby granted, provided that the above |
| 2646 | copyright notice and this permission notice appear in all copies. |
| 2647 | |
| 2648 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2649 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2650 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2651 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2652 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2653 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2654 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2655 | |
| 2656 | ------------------------------------------------------------------- |
| 2657 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 2658 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2659 | All rights reserved. |
| 2660 | |
| 2661 | Redistribution and use in source and binary forms, with or without |
| 2662 | modification, are permitted provided that the following conditions |
| 2663 | are met: |
| 2664 | 1. Redistributions of source code must retain the above copyright |
| 2665 | notice, this list of conditions and the following disclaimer. |
| 2666 | 2. Redistributions in binary form must reproduce the above copyright |
| 2667 | notice, this list of conditions and the following disclaimer in the |
| 2668 | documentation and/or other materials provided with the distribution. |
| 2669 | 3. The name of the author may not be used to endorse or promote products |
| 2670 | derived from this software without specific prior written permission. |
| 2671 | |
| 2672 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 2673 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 2674 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 2675 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 2676 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 2677 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 2678 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 2679 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 2680 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 2681 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 2682 | |
| 2683 | ------------------------------------------------------------------- |
| 2684 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2685 | Copyright (c) 1997, 1998 The NetBSD Foundation, Inc. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2686 | All rights reserved. |
| 2687 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2688 | This code was contributed to The NetBSD Foundation by Klaus Klein. |
| 2689 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2690 | Redistribution and use in source and binary forms, with or without |
| 2691 | modification, are permitted provided that the following conditions |
| 2692 | are met: |
| 2693 | 1. Redistributions of source code must retain the above copyright |
| 2694 | notice, this list of conditions and the following disclaimer. |
| 2695 | 2. Redistributions in binary form must reproduce the above copyright |
| 2696 | notice, this list of conditions and the following disclaimer in the |
| 2697 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2698 | 3. All advertising materials mentioning features or use of this software |
| 2699 | must display the following acknowledgement: |
| 2700 | This product includes software developed by the NetBSD |
| 2701 | Foundation, Inc. and its contributors. |
| 2702 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 2703 | contributors may be used to endorse or promote products derived |
| 2704 | from this software without specific prior written permission. |
| 2705 | |
| 2706 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 2707 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 2708 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 2709 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 2710 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 2711 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 2712 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 2713 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 2714 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 2715 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 2716 | POSSIBILITY OF SUCH DAMAGE. |
| 2717 | |
| 2718 | ------------------------------------------------------------------- |
| 2719 | |
| 2720 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 2721 | All rights reserved. |
| 2722 | |
| 2723 | This code is derived from software contributed to The NetBSD Foundation |
| 2724 | by Luke Mewburn. |
| 2725 | |
| 2726 | Redistribution and use in source and binary forms, with or without |
| 2727 | modification, are permitted provided that the following conditions |
| 2728 | are met: |
| 2729 | 1. Redistributions of source code must retain the above copyright |
| 2730 | notice, this list of conditions and the following disclaimer. |
| 2731 | 2. Redistributions in binary form must reproduce the above copyright |
| 2732 | notice, this list of conditions and the following disclaimer in the |
| 2733 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2734 | |
| 2735 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 2736 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 2737 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 2738 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 2739 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 2740 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 2741 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 2742 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 2743 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 2744 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 2745 | POSSIBILITY OF SUCH DAMAGE. |
| 2746 | |
| 2747 | ------------------------------------------------------------------- |
| 2748 | |
| 2749 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 2750 | All rights reserved. |
| 2751 | |
| 2752 | This code is derived from software contributed to The NetBSD Foundation |
| 2753 | by Luke Mewburn; and by Jason R. Thorpe. |
| 2754 | |
| 2755 | Redistribution and use in source and binary forms, with or without |
| 2756 | modification, are permitted provided that the following conditions |
| 2757 | are met: |
| 2758 | 1. Redistributions of source code must retain the above copyright |
| 2759 | notice, this list of conditions and the following disclaimer. |
| 2760 | 2. Redistributions in binary form must reproduce the above copyright |
| 2761 | notice, this list of conditions and the following disclaimer in the |
| 2762 | documentation and/or other materials provided with the distribution. |
| 2763 | 3. All advertising materials mentioning features or use of this software |
| 2764 | must display the following acknowledgement: |
| 2765 | This product includes software developed by the NetBSD |
| 2766 | Foundation, Inc. and its contributors. |
| 2767 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 2768 | contributors may be used to endorse or promote products derived |
| 2769 | from this software without specific prior written permission. |
| 2770 | |
| 2771 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 2772 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 2773 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 2774 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 2775 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 2776 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 2777 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 2778 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 2779 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 2780 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 2781 | POSSIBILITY OF SUCH DAMAGE. |
| 2782 | |
| 2783 | ------------------------------------------------------------------- |
| 2784 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2785 | Copyright (c) 1997, 2005 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2786 | |
| 2787 | Permission to use, copy, modify, and distribute this software for any |
| 2788 | purpose with or without fee is hereby granted, provided that the above |
| 2789 | copyright notice and this permission notice appear in all copies. |
| 2790 | |
| 2791 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2792 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2793 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2794 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2795 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2796 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2797 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2798 | |
| 2799 | ------------------------------------------------------------------- |
| 2800 | |
| 2801 | Copyright (c) 1998 Softweyr LLC. All rights reserved. |
| 2802 | |
| 2803 | strtok_r, from Berkeley strtok |
| 2804 | Oct 13, 1998 by Wes Peters <wes@softweyr.com> |
| 2805 | |
| 2806 | Copyright (c) 1988, 1993 |
| 2807 | The Regents of the University of California. All rights reserved. |
| 2808 | |
| 2809 | Redistribution and use in source and binary forms, with or without |
| 2810 | modification, are permitted provided that the following conditions |
| 2811 | are met: |
| 2812 | 1. Redistributions of source code must retain the above copyright |
| 2813 | notices, this list of conditions and the following disclaimer. |
| 2814 | 2. Redistributions in binary form must reproduce the above copyright |
| 2815 | notices, this list of conditions and the following disclaimer in the |
| 2816 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 2817 | 3. Neither the name of the University nor the names of its contributors |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2818 | may be used to endorse or promote products derived from this software |
| 2819 | without specific prior written permission. |
| 2820 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2821 | THIS SOFTWARE IS PROVIDED BY SOFTWEYR LLC, THE REGENTS AND CONTRIBUTORS |
| 2822 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 2823 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 2824 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTWEYR LLC, THE |
| 2825 | REGENTS, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 2826 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 2827 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 2828 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 2829 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 2830 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 2831 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 2832 | |
| 2833 | ------------------------------------------------------------------- |
| 2834 | |
| 2835 | Copyright (c) 1998 The NetBSD Foundation, Inc. |
| 2836 | All rights reserved. |
| 2837 | |
| 2838 | This code is derived from software contributed to The NetBSD Foundation |
| 2839 | by Klaus Klein. |
| 2840 | |
| 2841 | Redistribution and use in source and binary forms, with or without |
| 2842 | modification, are permitted provided that the following conditions |
| 2843 | are met: |
| 2844 | 1. Redistributions of source code must retain the above copyright |
| 2845 | notice, this list of conditions and the following disclaimer. |
| 2846 | 2. Redistributions in binary form must reproduce the above copyright |
| 2847 | notice, this list of conditions and the following disclaimer in the |
| 2848 | documentation and/or other materials provided with the distribution. |
| 2849 | 3. All advertising materials mentioning features or use of this software |
| 2850 | must display the following acknowledgement: |
| 2851 | This product includes software developed by the NetBSD |
| 2852 | Foundation, Inc. and its contributors. |
| 2853 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 2854 | contributors may be used to endorse or promote products derived |
| 2855 | from this software without specific prior written permission. |
| 2856 | |
| 2857 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 2858 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 2859 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 2860 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 2861 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 2862 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 2863 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 2864 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 2865 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 2866 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 2867 | POSSIBILITY OF SUCH DAMAGE. |
| 2868 | |
| 2869 | ------------------------------------------------------------------- |
| 2870 | |
| 2871 | Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2872 | All rights reserved. |
| 2873 | |
| 2874 | Redistribution and use in source and binary forms, with or without |
| 2875 | modification, are permitted provided that the following conditions |
| 2876 | are met: |
| 2877 | 1. Redistributions of source code must retain the above copyright |
| 2878 | notice, this list of conditions and the following disclaimer. |
| 2879 | 2. Redistributions in binary form must reproduce the above copyright |
| 2880 | notice, this list of conditions and the following disclaimer in the |
| 2881 | documentation and/or other materials provided with the distribution. |
| 2882 | 3. The name of the author may not be used to endorse or promote products |
| 2883 | derived from this software without specific prior written permission. |
| 2884 | |
| 2885 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 2886 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 2887 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 2888 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 2889 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 2890 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 2891 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 2892 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 2893 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 2894 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 2895 | |
| 2896 | ------------------------------------------------------------------- |
| 2897 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 2898 | Copyright (c) 1998, 2015 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2899 | |
| 2900 | Permission to use, copy, modify, and distribute this software for any |
| 2901 | purpose with or without fee is hereby granted, provided that the above |
| 2902 | copyright notice and this permission notice appear in all copies. |
| 2903 | |
| 2904 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2905 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2906 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2907 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2908 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2909 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2910 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2911 | |
| 2912 | ------------------------------------------------------------------- |
| 2913 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2914 | Copyright (c) 1999 |
| 2915 | David E. O'Brien |
| 2916 | Copyright (c) 1988, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2917 | The Regents of the University of California. All rights reserved. |
| 2918 | |
| 2919 | Redistribution and use in source and binary forms, with or without |
| 2920 | modification, are permitted provided that the following conditions |
| 2921 | are met: |
| 2922 | 1. Redistributions of source code must retain the above copyright |
| 2923 | notice, this list of conditions and the following disclaimer. |
| 2924 | 2. Redistributions in binary form must reproduce the above copyright |
| 2925 | notice, this list of conditions and the following disclaimer in the |
| 2926 | documentation and/or other materials provided with the distribution. |
| 2927 | 3. Neither the name of the University nor the names of its contributors |
| 2928 | may be used to endorse or promote products derived from this software |
| 2929 | without specific prior written permission. |
| 2930 | |
| 2931 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2932 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2933 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2934 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2935 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2936 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2937 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2938 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2939 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2940 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2941 | SUCH DAMAGE. |
| 2942 | |
| 2943 | ------------------------------------------------------------------- |
| 2944 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2945 | Copyright (c) 2000 Ben Harris. |
| 2946 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
| 2947 | All rights reserved. |
| 2948 | |
| 2949 | Redistribution and use in source and binary forms, with or without |
| 2950 | modification, are permitted provided that the following conditions |
| 2951 | are met: |
| 2952 | 1. Redistributions of source code must retain the above copyright |
| 2953 | notice, this list of conditions and the following disclaimer. |
| 2954 | 2. Redistributions in binary form must reproduce the above copyright |
| 2955 | notice, this list of conditions and the following disclaimer in the |
| 2956 | documentation and/or other materials provided with the distribution. |
| 2957 | 3. Neither the name of the project nor the names of its contributors |
| 2958 | may be used to endorse or promote products derived from this software |
| 2959 | without specific prior written permission. |
| 2960 | |
| 2961 | THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND |
| 2962 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2963 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2964 | ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE |
| 2965 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2966 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2967 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2968 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2969 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2970 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2971 | SUCH DAMAGE. |
| 2972 | |
| 2973 | ------------------------------------------------------------------- |
| 2974 | |
| 2975 | Copyright (c) 2000 The NetBSD Foundation, Inc. |
| 2976 | All rights reserved. |
| 2977 | |
| 2978 | This code is derived from software contributed to The NetBSD Foundation |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2979 | by Dieter Baron and Thomas Klausner. |
| 2980 | |
| 2981 | Redistribution and use in source and binary forms, with or without |
| 2982 | modification, are permitted provided that the following conditions |
| 2983 | are met: |
| 2984 | 1. Redistributions of source code must retain the above copyright |
| 2985 | notice, this list of conditions and the following disclaimer. |
| 2986 | 2. Redistributions in binary form must reproduce the above copyright |
| 2987 | notice, this list of conditions and the following disclaimer in the |
| 2988 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2989 | |
| 2990 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 2991 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 2992 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 2993 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 2994 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 2995 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 2996 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 2997 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 2998 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 2999 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3000 | POSSIBILITY OF SUCH DAMAGE. |
| 3001 | |
| 3002 | ------------------------------------------------------------------- |
| 3003 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 3004 | Copyright (c) 2001 Wasabi Systems, Inc. |
| 3005 | All rights reserved. |
| 3006 | |
| 3007 | Written by Frank van der Linden for Wasabi Systems, Inc. |
| 3008 | |
| 3009 | Redistribution and use in source and binary forms, with or without |
| 3010 | modification, are permitted provided that the following conditions |
| 3011 | are met: |
| 3012 | 1. Redistributions of source code must retain the above copyright |
| 3013 | notice, this list of conditions and the following disclaimer. |
| 3014 | 2. Redistributions in binary form must reproduce the above copyright |
| 3015 | notice, this list of conditions and the following disclaimer in the |
| 3016 | documentation and/or other materials provided with the distribution. |
| 3017 | 3. All advertising materials mentioning features or use of this software |
| 3018 | must display the following acknowledgement: |
| 3019 | This product includes software developed for the NetBSD Project by |
| 3020 | Wasabi Systems, Inc. |
| 3021 | 4. The name of Wasabi Systems, Inc. may not be used to endorse |
| 3022 | or promote products derived from this software without specific prior |
| 3023 | written permission. |
| 3024 | |
| 3025 | THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND |
| 3026 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3027 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3028 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC |
| 3029 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3030 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3031 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3032 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3033 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3034 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3035 | POSSIBILITY OF SUCH DAMAGE. |
| 3036 | |
| 3037 | ------------------------------------------------------------------- |
| 3038 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3039 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3040 | |
| 3041 | Redistribution and use in source and binary forms, with or without |
| 3042 | modification, are permitted provided that the following conditions |
| 3043 | are met: |
| 3044 | 1. Redistributions of source code must retain the above copyright |
| 3045 | notice, this list of conditions and the following disclaimer. |
| 3046 | 2. Redistributions in binary form must reproduce the above copyright |
| 3047 | notice, this list of conditions and the following disclaimer in the |
| 3048 | documentation and/or other materials provided with the distribution. |
| 3049 | |
| 3050 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3051 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3052 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3053 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3054 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3055 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3056 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3057 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3058 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3059 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3060 | SUCH DAMAGE. |
| 3061 | |
| 3062 | ------------------------------------------------------------------- |
| 3063 | |
| 3064 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3065 | |
| 3066 | Redistribution and use in source and binary forms, with or without |
| 3067 | modification, are permitted provided that the following conditions |
| 3068 | are met: |
| 3069 | 1. Redistributions of source code must retain the above copyright |
| 3070 | notice, this list of conditions and the following disclaimer. |
| 3071 | 2. Redistributions in binary form must reproduce the above copyright |
| 3072 | notice, this list of conditions and the following disclaimer in the |
| 3073 | documentation and/or other materials provided with the distribution. |
| 3074 | 3. Neither the name of Opsycon AB nor the names of its contributors |
| 3075 | may be used to endorse or promote products derived from this software |
| 3076 | without specific prior written permission. |
| 3077 | |
| 3078 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3079 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3080 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3081 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3082 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3083 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3084 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3085 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3086 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3087 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3088 | SUCH DAMAGE. |
| 3089 | |
| 3090 | ------------------------------------------------------------------- |
| 3091 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame^] | 3092 | Copyright (c) 2001-2011 The FreeBSD Project. |
| 3093 | All rights reserved. |
| 3094 | |
| 3095 | Redistribution and use in source and binary forms, with or without |
| 3096 | modification, are permitted provided that the following conditions |
| 3097 | are met: |
| 3098 | 1. Redistributions of source code must retain the above copyright |
| 3099 | notice, this list of conditions and the following disclaimer. |
| 3100 | 2. Redistributions in binary form must reproduce the above copyright |
| 3101 | notice, this list of conditions and the following disclaimer in the |
| 3102 | documentation and/or other materials provided with the distribution. |
| 3103 | |
| 3104 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3105 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3106 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3107 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3108 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3109 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3110 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3111 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3112 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3113 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3114 | SUCH DAMAGE. |
| 3115 | |
| 3116 | ------------------------------------------------------------------- |
| 3117 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3118 | Copyright (c) 2002 Daniel Hartmeier |
| 3119 | All rights reserved. |
| 3120 | |
| 3121 | Redistribution and use in source and binary forms, with or without |
| 3122 | modification, are permitted provided that the following conditions |
| 3123 | are met: |
| 3124 | |
| 3125 | - Redistributions of source code must retain the above copyright |
| 3126 | notice, this list of conditions and the following disclaimer. |
| 3127 | - Redistributions in binary form must reproduce the above |
| 3128 | copyright notice, this list of conditions and the following |
| 3129 | disclaimer in the documentation and/or other materials provided |
| 3130 | with the distribution. |
| 3131 | |
| 3132 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 3133 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3134 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 3135 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 3136 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3137 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 3138 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 3139 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 3140 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3141 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
| 3142 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3143 | POSSIBILITY OF SUCH DAMAGE. |
| 3144 | |
| 3145 | ------------------------------------------------------------------- |
| 3146 | |
| 3147 | Copyright (c) 2002 Marc Espie. |
| 3148 | |
| 3149 | Redistribution and use in source and binary forms, with or without |
| 3150 | modification, are permitted provided that the following conditions |
| 3151 | are met: |
| 3152 | 1. Redistributions of source code must retain the above copyright |
| 3153 | notice, this list of conditions and the following disclaimer. |
| 3154 | 2. Redistributions in binary form must reproduce the above copyright |
| 3155 | notice, this list of conditions and the following disclaimer in the |
| 3156 | documentation and/or other materials provided with the distribution. |
| 3157 | |
| 3158 | THIS SOFTWARE IS PROVIDED BY THE OPENBSD PROJECT AND CONTRIBUTORS |
| 3159 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3160 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 3161 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OPENBSD |
| 3162 | PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 3163 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 3164 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 3165 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 3166 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 3167 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 3168 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3169 | |
| 3170 | ------------------------------------------------------------------- |
| 3171 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3172 | Copyright (c) 2002 The NetBSD Foundation, Inc. |
| 3173 | All rights reserved. |
| 3174 | |
| 3175 | This code is derived from software contributed to The NetBSD Foundation |
| 3176 | by Christos Zoulas. |
| 3177 | |
| 3178 | Redistribution and use in source and binary forms, with or without |
| 3179 | modification, are permitted provided that the following conditions |
| 3180 | are met: |
| 3181 | 1. Redistributions of source code must retain the above copyright |
| 3182 | notice, this list of conditions and the following disclaimer. |
| 3183 | 2. Redistributions in binary form must reproduce the above copyright |
| 3184 | notice, this list of conditions and the following disclaimer in the |
| 3185 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3186 | |
| 3187 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3188 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3189 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3190 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3191 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3192 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3193 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3194 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3195 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3196 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3197 | POSSIBILITY OF SUCH DAMAGE. |
| 3198 | |
| 3199 | ------------------------------------------------------------------- |
| 3200 | |
| 3201 | Copyright (c) 2002 Tim J. Robbins |
| 3202 | All rights reserved. |
| 3203 | |
| 3204 | Redistribution and use in source and binary forms, with or without |
| 3205 | modification, are permitted provided that the following conditions |
| 3206 | are met: |
| 3207 | 1. Redistributions of source code must retain the above copyright |
| 3208 | notice, this list of conditions and the following disclaimer. |
| 3209 | 2. Redistributions in binary form must reproduce the above copyright |
| 3210 | notice, this list of conditions and the following disclaimer in the |
| 3211 | documentation and/or other materials provided with the distribution. |
| 3212 | |
| 3213 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3214 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3215 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3216 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3217 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3218 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3219 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3220 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3221 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3222 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3223 | SUCH DAMAGE. |
| 3224 | |
| 3225 | ------------------------------------------------------------------- |
| 3226 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3227 | Copyright (c) 2002 Tim J. Robbins. |
| 3228 | All rights reserved. |
| 3229 | |
| 3230 | Redistribution and use in source and binary forms, with or without |
| 3231 | modification, are permitted provided that the following conditions |
| 3232 | are met: |
| 3233 | 1. Redistributions of source code must retain the above copyright |
| 3234 | notice, this list of conditions and the following disclaimer. |
| 3235 | 2. Redistributions in binary form must reproduce the above copyright |
| 3236 | notice, this list of conditions and the following disclaimer in the |
| 3237 | documentation and/or other materials provided with the distribution. |
| 3238 | |
| 3239 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3240 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3241 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3242 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3243 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3244 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3245 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3246 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3247 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3248 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3249 | SUCH DAMAGE. |
| 3250 | |
| 3251 | ------------------------------------------------------------------- |
| 3252 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3253 | Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3254 | |
| 3255 | Permission to use, copy, modify, and distribute this software for any |
| 3256 | purpose with or without fee is hereby granted, provided that the above |
| 3257 | copyright notice and this permission notice appear in all copies. |
| 3258 | |
| 3259 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3260 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3261 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3262 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3263 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3264 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3265 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3266 | |
| 3267 | Sponsored in part by the Defense Advanced Research Projects |
| 3268 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3269 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3270 | |
| 3271 | ------------------------------------------------------------------- |
| 3272 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3273 | Copyright (c) 2002, 2003 Tim J. Robbins. |
| 3274 | All rights reserved. |
| 3275 | |
| 3276 | Redistribution and use in source and binary forms, with or without |
| 3277 | modification, are permitted provided that the following conditions |
| 3278 | are met: |
| 3279 | 1. Redistributions of source code must retain the above copyright |
| 3280 | notice, this list of conditions and the following disclaimer. |
| 3281 | 2. Redistributions in binary form must reproduce the above copyright |
| 3282 | notice, this list of conditions and the following disclaimer in the |
| 3283 | documentation and/or other materials provided with the distribution. |
| 3284 | |
| 3285 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3286 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3287 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3288 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3289 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3290 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3291 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3292 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3293 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3294 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3295 | SUCH DAMAGE. |
| 3296 | |
| 3297 | ------------------------------------------------------------------- |
| 3298 | |
| 3299 | Copyright (c) 2002-2004 Tim J. Robbins |
| 3300 | All rights reserved. |
| 3301 | |
| 3302 | Redistribution and use in source and binary forms, with or without |
| 3303 | modification, are permitted provided that the following conditions |
| 3304 | are met: |
| 3305 | 1. Redistributions of source code must retain the above copyright |
| 3306 | notice, this list of conditions and the following disclaimer. |
| 3307 | 2. Redistributions in binary form must reproduce the above copyright |
| 3308 | notice, this list of conditions and the following disclaimer in the |
| 3309 | documentation and/or other materials provided with the distribution. |
| 3310 | |
| 3311 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3312 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3313 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3314 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3315 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3316 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3317 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3318 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3319 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3320 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3321 | SUCH DAMAGE. |
| 3322 | |
| 3323 | ------------------------------------------------------------------- |
| 3324 | |
| 3325 | Copyright (c) 2002-2004 Tim J. Robbins. |
| 3326 | All rights reserved. |
| 3327 | |
| 3328 | Redistribution and use in source and binary forms, with or without |
| 3329 | modification, are permitted provided that the following conditions |
| 3330 | are met: |
| 3331 | 1. Redistributions of source code must retain the above copyright |
| 3332 | notice, this list of conditions and the following disclaimer. |
| 3333 | 2. Redistributions in binary form must reproduce the above copyright |
| 3334 | notice, this list of conditions and the following disclaimer in the |
| 3335 | documentation and/or other materials provided with the distribution. |
| 3336 | |
| 3337 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3338 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3339 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3340 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3341 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3342 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3343 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3344 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3345 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3346 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3347 | SUCH DAMAGE. |
| 3348 | |
| 3349 | ------------------------------------------------------------------- |
| 3350 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3351 | Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> |
| 3352 | |
| 3353 | Redistribution and use in source and binary forms, with or without |
| 3354 | modification, are permitted provided that the following conditions |
| 3355 | are met: |
| 3356 | 1. Redistributions of source code must retain the above copyright |
| 3357 | notice, this list of conditions and the following disclaimer. |
| 3358 | 2. Redistributions in binary form must reproduce the above copyright |
| 3359 | notice, this list of conditions and the following disclaimer in the |
| 3360 | documentation and/or other materials provided with the distribution. |
| 3361 | 3. The names of the authors may not be used to endorse or promote |
| 3362 | products derived from this software without specific prior written |
| 3363 | permission. |
| 3364 | |
| 3365 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3366 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3367 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3368 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3369 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3370 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3371 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3372 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3373 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3374 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3375 | SUCH DAMAGE. |
| 3376 | |
| 3377 | ------------------------------------------------------------------- |
| 3378 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 3379 | Copyright (c) 2003 David Schultz <das@FreeBSD.ORG> |
| 3380 | All rights reserved. |
| 3381 | |
| 3382 | Redistribution and use in source and binary forms, with or without |
| 3383 | modification, are permitted provided that the following conditions |
| 3384 | are met: |
| 3385 | 1. Redistributions of source code must retain the above copyright |
| 3386 | notice, this list of conditions and the following disclaimer. |
| 3387 | 2. Redistributions in binary form must reproduce the above copyright |
| 3388 | notice, this list of conditions and the following disclaimer in the |
| 3389 | documentation and/or other materials provided with the distribution. |
| 3390 | |
| 3391 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3392 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3393 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3394 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3395 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3396 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3397 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3398 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3399 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3400 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3401 | SUCH DAMAGE. |
| 3402 | |
| 3403 | ------------------------------------------------------------------- |
| 3404 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3405 | Copyright (c) 2003 Networks Associates Technology, Inc. |
| 3406 | All rights reserved. |
| 3407 | |
| 3408 | Portions of this software were developed for the FreeBSD Project by |
| 3409 | Jacques A. Vidrine, Safeport Network Services, and Network |
| 3410 | Associates Laboratories, the Security Research Division of Network |
| 3411 | Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 |
| 3412 | ("CBOSS"), as part of the DARPA CHATS research program. |
| 3413 | |
| 3414 | Redistribution and use in source and binary forms, with or without |
| 3415 | modification, are permitted provided that the following conditions |
| 3416 | are met: |
| 3417 | 1. Redistributions of source code must retain the above copyright |
| 3418 | notice, this list of conditions and the following disclaimer. |
| 3419 | 2. Redistributions in binary form must reproduce the above copyright |
| 3420 | notice, this list of conditions and the following disclaimer in the |
| 3421 | documentation and/or other materials provided with the distribution. |
| 3422 | |
| 3423 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3424 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3425 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3426 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3427 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3428 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3429 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3430 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3431 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3432 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3433 | SUCH DAMAGE. |
| 3434 | |
| 3435 | ------------------------------------------------------------------- |
| 3436 | |
Nick Kralevich | 5e58ea0 | 2012-09-12 13:21:25 -0700 | [diff] [blame] | 3437 | Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3438 | |
| 3439 | Permission to use, copy, modify, and distribute this software for any |
| 3440 | purpose with or without fee is hereby granted, provided that the above |
| 3441 | copyright notice and this permission notice appear in all copies. |
| 3442 | |
| 3443 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3444 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3445 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3446 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3447 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3448 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3449 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3450 | |
| 3451 | Sponsored in part by the Defense Advanced Research Projects |
| 3452 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3453 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3454 | |
| 3455 | ------------------------------------------------------------------- |
| 3456 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame^] | 3457 | Copyright (c) 2003, 2004 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3458 | |
| 3459 | Permission to use, copy, modify, and distribute this software for any |
| 3460 | purpose with or without fee is hereby granted, provided that the above |
| 3461 | copyright notice and this permission notice appear in all copies. |
| 3462 | |
| 3463 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3464 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3465 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3466 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3467 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3468 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3469 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3470 | |
| 3471 | Sponsored in part by the Defense Advanced Research Projects |
| 3472 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3473 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3474 | |
| 3475 | ------------------------------------------------------------------- |
| 3476 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3477 | Copyright (c) 2004 The NetBSD Foundation, Inc. |
| 3478 | All rights reserved. |
| 3479 | |
| 3480 | This code is derived from software contributed to The NetBSD Foundation |
| 3481 | by Christos Zoulas. |
| 3482 | |
| 3483 | Redistribution and use in source and binary forms, with or without |
| 3484 | modification, are permitted provided that the following conditions |
| 3485 | are met: |
| 3486 | 1. Redistributions of source code must retain the above copyright |
| 3487 | notice, this list of conditions and the following disclaimer. |
| 3488 | 2. Redistributions in binary form must reproduce the above copyright |
| 3489 | notice, this list of conditions and the following disclaimer in the |
| 3490 | documentation and/or other materials provided with the distribution. |
| 3491 | 3. All advertising materials mentioning features or use of this software |
| 3492 | must display the following acknowledgement: |
| 3493 | This product includes software developed by the NetBSD |
| 3494 | Foundation, Inc. and its contributors. |
| 3495 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3496 | contributors may be used to endorse or promote products derived |
| 3497 | from this software without specific prior written permission. |
| 3498 | |
| 3499 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3500 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3501 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3502 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3503 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3504 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3505 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3506 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3507 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3508 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3509 | POSSIBILITY OF SUCH DAMAGE. |
| 3510 | |
| 3511 | ------------------------------------------------------------------- |
| 3512 | |
| 3513 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3514 | Copyright (c) 1995,1999 by Internet Software Consortium. |
| 3515 | |
| 3516 | Permission to use, copy, modify, and distribute this software for any |
| 3517 | purpose with or without fee is hereby granted, provided that the above |
| 3518 | copyright notice and this permission notice appear in all copies. |
| 3519 | |
| 3520 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3521 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3522 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3523 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3524 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3525 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3526 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3527 | |
| 3528 | ------------------------------------------------------------------- |
| 3529 | |
| 3530 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3531 | Copyright (c) 1995-1999 by Internet Software Consortium |
| 3532 | |
| 3533 | Permission to use, copy, modify, and distribute this software for any |
| 3534 | purpose with or without fee is hereby granted, provided that the above |
| 3535 | copyright notice and this permission notice appear in all copies. |
| 3536 | |
| 3537 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3538 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3539 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3540 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3541 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3542 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3543 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3544 | |
| 3545 | ------------------------------------------------------------------- |
| 3546 | |
| 3547 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3548 | Copyright (c) 1995-1999 by Internet Software Consortium. |
| 3549 | |
| 3550 | Permission to use, copy, modify, and distribute this software for any |
| 3551 | purpose with or without fee is hereby granted, provided that the above |
| 3552 | copyright notice and this permission notice appear in all copies. |
| 3553 | |
| 3554 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3555 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3556 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3557 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3558 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3559 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3560 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3561 | |
| 3562 | ------------------------------------------------------------------- |
| 3563 | |
| 3564 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3565 | Copyright (c) 1996,1999 by Internet Software Consortium. |
| 3566 | |
| 3567 | Permission to use, copy, modify, and distribute this software for any |
| 3568 | purpose with or without fee is hereby granted, provided that the above |
| 3569 | copyright notice and this permission notice appear in all copies. |
| 3570 | |
| 3571 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3572 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3573 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3574 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3575 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3576 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3577 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3578 | |
| 3579 | ------------------------------------------------------------------- |
| 3580 | |
| 3581 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3582 | Copyright (c) 1996-1999 by Internet Software Consortium |
| 3583 | |
| 3584 | Permission to use, copy, modify, and distribute this software for any |
| 3585 | purpose with or without fee is hereby granted, provided that the above |
| 3586 | copyright notice and this permission notice appear in all copies. |
| 3587 | |
| 3588 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3589 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3590 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3591 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3592 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3593 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3594 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3595 | |
| 3596 | ------------------------------------------------------------------- |
| 3597 | |
| 3598 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3599 | Copyright (c) 1996-1999 by Internet Software Consortium. |
| 3600 | |
| 3601 | Permission to use, copy, modify, and distribute this software for any |
| 3602 | purpose with or without fee is hereby granted, provided that the above |
| 3603 | copyright notice and this permission notice appear in all copies. |
| 3604 | |
| 3605 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3606 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3607 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3608 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3609 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3610 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3611 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3612 | |
| 3613 | ------------------------------------------------------------------- |
| 3614 | |
| 3615 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3616 | Copyright (c) 1997,1999 by Internet Software Consortium. |
| 3617 | |
| 3618 | Permission to use, copy, modify, and distribute this software for any |
| 3619 | purpose with or without fee is hereby granted, provided that the above |
| 3620 | copyright notice and this permission notice appear in all copies. |
| 3621 | |
| 3622 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3623 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3624 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3625 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3626 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3627 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3628 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3629 | |
| 3630 | ------------------------------------------------------------------- |
| 3631 | |
| 3632 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3633 | Copyright (c) 1999 by Internet Software Consortium. |
| 3634 | |
| 3635 | Permission to use, copy, modify, and distribute this software for any |
| 3636 | purpose with or without fee is hereby granted, provided that the above |
| 3637 | copyright notice and this permission notice appear in all copies. |
| 3638 | |
| 3639 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3640 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3641 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3642 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3643 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3644 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3645 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3646 | |
| 3647 | ------------------------------------------------------------------- |
| 3648 | |
| 3649 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3650 | Portions Copyright (c) 1996-1999 by Internet Software Consortium. |
| 3651 | |
| 3652 | Permission to use, copy, modify, and distribute this software for any |
| 3653 | purpose with or without fee is hereby granted, provided that the above |
| 3654 | copyright notice and this permission notice appear in all copies. |
| 3655 | |
| 3656 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3657 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3658 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3659 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3660 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3661 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3662 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3663 | |
| 3664 | ------------------------------------------------------------------- |
| 3665 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 3666 | Copyright (c) 2004, 2005 David Schultz <das@FreeBSD.ORG> |
| 3667 | All rights reserved. |
| 3668 | |
| 3669 | Redistribution and use in source and binary forms, with or without |
| 3670 | modification, are permitted provided that the following conditions |
| 3671 | are met: |
| 3672 | 1. Redistributions of source code must retain the above copyright |
| 3673 | notice, this list of conditions and the following disclaimer. |
| 3674 | 2. Redistributions in binary form must reproduce the above copyright |
| 3675 | notice, this list of conditions and the following disclaimer in the |
| 3676 | documentation and/or other materials provided with the distribution. |
| 3677 | |
| 3678 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3679 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3680 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3681 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3682 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3683 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3684 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3685 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3686 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3687 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3688 | SUCH DAMAGE. |
| 3689 | |
| 3690 | ------------------------------------------------------------------- |
| 3691 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame^] | 3692 | Copyright (c) 2004-2005 David Schultz <das (at) FreeBSD.ORG> |
| 3693 | All rights reserved. |
| 3694 | |
| 3695 | Redistribution and use in source and binary forms, with or without |
| 3696 | modification, are permitted provided that the following conditions |
| 3697 | are met: |
| 3698 | 1. Redistributions of source code must retain the above copyright |
| 3699 | notice, this list of conditions and the following disclaimer. |
| 3700 | 2. Redistributions in binary form must reproduce the above copyright |
| 3701 | notice, this list of conditions and the following disclaimer in the |
| 3702 | documentation and/or other materials provided with the distribution. |
| 3703 | |
| 3704 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3705 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3706 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3707 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3708 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3709 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3710 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3711 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3712 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3713 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3714 | SUCH DAMAGE. |
| 3715 | |
| 3716 | ------------------------------------------------------------------- |
| 3717 | |
| 3718 | Copyright (c) 2004-2005 David Schultz <das@FreeBSD.ORG> |
| 3719 | All rights reserved. |
| 3720 | |
| 3721 | Redistribution and use in source and binary forms, with or without |
| 3722 | modification, are permitted provided that the following conditions |
| 3723 | are met: |
| 3724 | 1. Redistributions of source code must retain the above copyright |
| 3725 | notice, this list of conditions and the following disclaimer. |
| 3726 | 2. Redistributions in binary form must reproduce the above copyright |
| 3727 | notice, this list of conditions and the following disclaimer in the |
| 3728 | documentation and/or other materials provided with the distribution. |
| 3729 | |
| 3730 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3731 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3732 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3733 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3734 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3735 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3736 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3737 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3738 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3739 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3740 | SUCH DAMAGE. |
| 3741 | |
| 3742 | ------------------------------------------------------------------- |
| 3743 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3744 | Copyright (c) 2005 Tim J. Robbins. |
| 3745 | All rights reserved. |
| 3746 | |
| 3747 | Redistribution and use in source and binary forms, with or without |
| 3748 | modification, are permitted provided that the following conditions |
| 3749 | are met: |
| 3750 | 1. Redistributions of source code must retain the above copyright |
| 3751 | notice, this list of conditions and the following disclaimer. |
| 3752 | 2. Redistributions in binary form must reproduce the above copyright |
| 3753 | notice, this list of conditions and the following disclaimer in the |
| 3754 | documentation and/or other materials provided with the distribution. |
| 3755 | |
| 3756 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3757 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3758 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3759 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3760 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3761 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3762 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3763 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3764 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3765 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3766 | SUCH DAMAGE. |
| 3767 | |
| 3768 | ------------------------------------------------------------------- |
| 3769 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 3770 | Copyright (c) 2005 by Internet Systems Consortium, Inc. ("ISC") |
| 3771 | Copyright (c) 1995-1999 by Internet Software Consortium |
| 3772 | |
| 3773 | Permission to use, copy, modify, and distribute this software for any |
| 3774 | purpose with or without fee is hereby granted, provided that the above |
| 3775 | copyright notice and this permission notice appear in all copies. |
| 3776 | |
| 3777 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3778 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3779 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3780 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3781 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3782 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3783 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3784 | |
| 3785 | ------------------------------------------------------------------- |
| 3786 | |
Elliott Hughes | 7e54c76 | 2015-05-12 10:09:01 -0700 | [diff] [blame] | 3787 | Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3788 | |
| 3789 | Permission to use, copy, modify, and distribute this software for any |
| 3790 | purpose with or without fee is hereby granted, provided that the above |
| 3791 | copyright notice and this permission notice appear in all copies. |
| 3792 | |
| 3793 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3794 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3795 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3796 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3797 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3798 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3799 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3800 | |
| 3801 | ------------------------------------------------------------------- |
| 3802 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3803 | Copyright (c) 2007-2008 Michael G Schwern |
| 3804 | |
| 3805 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
| 3806 | |
| 3807 | The MIT License: |
| 3808 | |
| 3809 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 3810 | of this software and associated documentation files (the "Software"), to deal |
| 3811 | in the Software without restriction, including without limitation the rights |
| 3812 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 3813 | copies of the Software, and to permit persons to whom the Software is |
| 3814 | furnished to do so, subject to the following conditions: |
| 3815 | |
| 3816 | The above copyright notice and this permission notice shall be included in |
| 3817 | all copies or substantial portions of the Software. |
| 3818 | |
| 3819 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 3820 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 3821 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 3822 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 3823 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 3824 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 3825 | THE SOFTWARE. |
| 3826 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3827 | ------------------------------------------------------------------- |
| 3828 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3829 | Copyright (c) 2007-2008 Michael G Schwern |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3830 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3831 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3832 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3833 | The MIT License: |
| 3834 | |
| 3835 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 3836 | of this software and associated documentation files (the "Software"), to deal |
| 3837 | in the Software without restriction, including without limitation the rights |
| 3838 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 3839 | copies of the Software, and to permit persons to whom the Software is |
| 3840 | furnished to do so, subject to the following conditions: |
| 3841 | |
| 3842 | The above copyright notice and this permission notice shall be included in |
| 3843 | all copies or substantial portions of the Software. |
| 3844 | |
| 3845 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 3846 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 3847 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 3848 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 3849 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 3850 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 3851 | THE SOFTWARE. |
| 3852 | |
| 3853 | Origin: http://code.google.com/p/y2038 |
| 3854 | Modified for Bionic by the Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3855 | |
| 3856 | ------------------------------------------------------------------- |
| 3857 | |
| 3858 | Copyright (c) 2008 Android Open Source Project (query id randomization) |
| 3859 | Copyright (c) 1985, 1993 |
| 3860 | The Regents of the University of California. All rights reserved. |
| 3861 | |
| 3862 | Redistribution and use in source and binary forms, with or without |
| 3863 | modification, are permitted provided that the following conditions |
| 3864 | are met: |
| 3865 | 1. Redistributions of source code must retain the above copyright |
| 3866 | notice, this list of conditions and the following disclaimer. |
| 3867 | 2. Redistributions in binary form must reproduce the above copyright |
| 3868 | notice, this list of conditions and the following disclaimer in the |
| 3869 | documentation and/or other materials provided with the distribution. |
| 3870 | 3. All advertising materials mentioning features or use of this software |
| 3871 | must display the following acknowledgement: |
| 3872 | This product includes software developed by the University of |
| 3873 | California, Berkeley and its contributors. |
| 3874 | 4. Neither the name of the University nor the names of its contributors |
| 3875 | may be used to endorse or promote products derived from this software |
| 3876 | without specific prior written permission. |
| 3877 | |
| 3878 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 3879 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3880 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3881 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 3882 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3883 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3884 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3885 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3886 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3887 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3888 | SUCH DAMAGE. |
| 3889 | |
| 3890 | ------------------------------------------------------------------- |
Michael Hope | ea8fad1 | 2012-07-31 16:18:22 +1200 | [diff] [blame] | 3891 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 3892 | Copyright (c) 2008 Otto Moerbeek <otto@drijf.net> |
| 3893 | |
| 3894 | Permission to use, copy, modify, and distribute this software for any |
| 3895 | purpose with or without fee is hereby granted, provided that the above |
| 3896 | copyright notice and this permission notice appear in all copies. |
| 3897 | |
| 3898 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3899 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3900 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3901 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3902 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3903 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3904 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3905 | |
| 3906 | ------------------------------------------------------------------- |
| 3907 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3908 | Copyright (c) 2008 Todd C. Miller <millert@openbsd.org> |
| 3909 | |
| 3910 | Permission to use, copy, modify, and distribute this software for any |
| 3911 | purpose with or without fee is hereby granted, provided that the above |
| 3912 | copyright notice and this permission notice appear in all copies. |
| 3913 | |
| 3914 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3915 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3916 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3917 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3918 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3919 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3920 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3921 | |
| 3922 | ------------------------------------------------------------------- |
| 3923 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 3924 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
| 3925 | |
| 3926 | Permission to use, copy, modify, and distribute this software for any |
| 3927 | purpose with or without fee is hereby granted, provided that the above |
| 3928 | copyright notice and this permission notice appear in all copies. |
| 3929 | |
| 3930 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3931 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3932 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3933 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3934 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3935 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3936 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3937 | |
| 3938 | ------------------------------------------------------------------- |
| 3939 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3940 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 3941 | All rights reserved. |
| 3942 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 3943 | Copyright (c) 2011 The FreeBSD Foundation |
| 3944 | All rights reserved. |
| 3945 | Portions of this software were developed by David Chisnall |
| 3946 | under sponsorship from the FreeBSD Foundation. |
| 3947 | |
| 3948 | Redistribution and use in source and binary forms, with or without |
| 3949 | modification, are permitted provided that the following conditions |
| 3950 | are met: |
| 3951 | 1. Redistributions of source code must retain the above copyright |
| 3952 | notice, this list of conditions and the following disclaimer. |
| 3953 | 2. Redistributions in binary form must reproduce the above copyright |
| 3954 | notice, this list of conditions and the following disclaimer in the |
| 3955 | documentation and/or other materials provided with the distribution. |
| 3956 | |
| 3957 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3958 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3959 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3960 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3961 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3962 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3963 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3964 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3965 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3966 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3967 | SUCH DAMAGE. |
| 3968 | |
| 3969 | ------------------------------------------------------------------- |
| 3970 | |
| 3971 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 3972 | All rights reserved. |
| 3973 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3974 | Redistribution and use in source and binary forms, with or without |
| 3975 | modification, are permitted provided that the following conditions |
| 3976 | are met: |
| 3977 | 1. Redistributions of source code must retain the above copyright |
| 3978 | notice, this list of conditions and the following disclaimer. |
| 3979 | 2. Redistributions in binary form must reproduce the above copyright |
| 3980 | notice, this list of conditions and the following disclaimer in the |
| 3981 | documentation and/or other materials provided with the distribution. |
| 3982 | |
| 3983 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3984 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3985 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3986 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3987 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3988 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3989 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3990 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3991 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3992 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3993 | SUCH DAMAGE. |
| 3994 | |
| 3995 | ------------------------------------------------------------------- |
| 3996 | |
Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 3997 | Copyright (c) 2009 The NetBSD Foundation, Inc. |
| 3998 | |
| 3999 | This code is derived from software contributed to The NetBSD Foundation |
| 4000 | by Roy Marples. |
| 4001 | |
| 4002 | Redistribution and use in source and binary forms, with or without |
| 4003 | modification, are permitted provided that the following conditions |
| 4004 | are met: |
| 4005 | 1. Redistributions of source code must retain the above copyright |
| 4006 | notice, this list of conditions and the following disclaimer. |
| 4007 | 2. Redistributions in binary form must reproduce the above copyright |
| 4008 | notice, this list of conditions and the following disclaimer in the |
| 4009 | documentation and/or other materials provided with the distribution. |
| 4010 | |
| 4011 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4012 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4013 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4014 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4015 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4016 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4017 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4018 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4019 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4020 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4021 | |
| 4022 | ------------------------------------------------------------------- |
| 4023 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4024 | Copyright (c) 2010 MIPS Technologies, Inc. |
| 4025 | |
| 4026 | All rights reserved. |
| 4027 | |
| 4028 | Redistribution and use in source and binary forms, with or without |
| 4029 | modification, are permitted provided that the following conditions |
| 4030 | are met: |
| 4031 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4032 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4033 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4034 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4035 | notice, this list of conditions and the following disclaimer |
| 4036 | in the documentation and/or other materials provided with |
| 4037 | the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4038 | * Neither the name of MIPS Technologies Inc. nor the names of its |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4039 | contributors may be used to endorse or promote products derived |
| 4040 | from this software without specific prior written permission. |
| 4041 | |
| 4042 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4043 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4044 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4045 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4046 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4047 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4048 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4049 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4050 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4051 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4052 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4053 | |
| 4054 | ------------------------------------------------------------------- |
| 4055 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame^] | 4056 | Copyright (c) 2010 The NetBSD Foundation, Inc. |
| 4057 | All rights reserved. |
| 4058 | |
| 4059 | Redistribution and use in source and binary forms, with or without |
| 4060 | modification, are permitted provided that the following conditions |
| 4061 | are met: |
| 4062 | 1. Redistributions of source code must retain the above copyright |
| 4063 | notice, this list of conditions and the following disclaimer. |
| 4064 | 2. Redistributions in binary form must reproduce the above copyright |
| 4065 | notice, this list of conditions and the following disclaimer in the |
| 4066 | documentation and/or other materials provided with the distribution. |
| 4067 | |
| 4068 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 4069 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 4070 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 4071 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 4072 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 4073 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 4074 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 4075 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 4076 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 4077 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 4078 | POSSIBILITY OF SUCH DAMAGE. |
| 4079 | |
| 4080 | ------------------------------------------------------------------- |
| 4081 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4082 | Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> |
| 4083 | |
| 4084 | Permission to use, copy, modify, and distribute this software for any |
| 4085 | purpose with or without fee is hereby granted, provided that the above |
| 4086 | copyright notice and this permission notice appear in all copies. |
| 4087 | |
| 4088 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4089 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4090 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4091 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4092 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4093 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4094 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4095 | |
| 4096 | ------------------------------------------------------------------- |
| 4097 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4098 | Copyright (c) 2010, 2011, 2012, 2013 Intel Corporation |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4099 | All rights reserved. |
| 4100 | |
| 4101 | Redistribution and use in source and binary forms, with or without |
| 4102 | modification, are permitted provided that the following conditions are met: |
| 4103 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4104 | * Redistributions of source code must retain the above copyright notice, |
| 4105 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4106 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4107 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4108 | * this list of conditions and the following disclaimer in the documentation |
| 4109 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4110 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4111 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4112 | * may be used to endorse or promote products derived from this software |
| 4113 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4114 | |
| 4115 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4116 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4117 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4118 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4119 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4120 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4121 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4122 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4123 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4124 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4125 | |
| 4126 | ------------------------------------------------------------------- |
| 4127 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4128 | Copyright (c) 2010, Intel Corporation |
| 4129 | All rights reserved. |
| 4130 | |
| 4131 | Redistribution and use in source and binary forms, with or without |
| 4132 | modification, are permitted provided that the following conditions are met: |
| 4133 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4134 | * Redistributions of source code must retain the above copyright notice, |
| 4135 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4136 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4137 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4138 | * this list of conditions and the following disclaimer in the documentation |
| 4139 | * and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4140 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4141 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4142 | * may be used to endorse or promote products derived from this software |
| 4143 | * without specific prior written permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4144 | |
| 4145 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4146 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4147 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4148 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4149 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4150 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4151 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4152 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4153 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4154 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4155 | |
| 4156 | ------------------------------------------------------------------- |
| 4157 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 4158 | Copyright (c) 2011 David Chisnall |
| 4159 | All rights reserved. |
| 4160 | |
| 4161 | Redistribution and use in source and binary forms, with or without |
| 4162 | modification, are permitted provided that the following conditions |
| 4163 | are met: |
| 4164 | 1. Redistributions of source code must retain the above copyright |
| 4165 | notice, this list of conditions and the following disclaimer. |
| 4166 | 2. Redistributions in binary form must reproduce the above copyright |
| 4167 | notice, this list of conditions and the following disclaimer in the |
| 4168 | documentation and/or other materials provided with the distribution. |
| 4169 | |
| 4170 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4171 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4172 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4173 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4174 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4175 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4176 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4177 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4178 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4179 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4180 | SUCH DAMAGE. |
| 4181 | |
| 4182 | ------------------------------------------------------------------- |
| 4183 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4184 | Copyright (c) 2011 Ed Schouten <ed@FreeBSD.org> |
| 4185 | David Chisnall <theraven@FreeBSD.org> |
| 4186 | All rights reserved. |
| 4187 | |
| 4188 | Redistribution and use in source and binary forms, with or without |
| 4189 | modification, are permitted provided that the following conditions |
| 4190 | are met: |
| 4191 | 1. Redistributions of source code must retain the above copyright |
| 4192 | notice, this list of conditions and the following disclaimer. |
| 4193 | 2. Redistributions in binary form must reproduce the above copyright |
| 4194 | notice, this list of conditions and the following disclaimer in the |
| 4195 | documentation and/or other materials provided with the distribution. |
| 4196 | |
| 4197 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4198 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4199 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4200 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4201 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4202 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4203 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4204 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4205 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4206 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4207 | SUCH DAMAGE. |
| 4208 | |
| 4209 | ------------------------------------------------------------------- |
| 4210 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4211 | Copyright (c) 2011 Intel Corporation |
| 4212 | All rights reserved. |
| 4213 | |
| 4214 | Redistribution and use in source and binary forms, with or without |
| 4215 | modification, are permitted provided that the following conditions are met: |
| 4216 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4217 | * Redistributions of source code must retain the above copyright notice, |
| 4218 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4219 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4220 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4221 | * this list of conditions and the following disclaimer in the documentation |
| 4222 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4223 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4224 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4225 | * may be used to endorse or promote products derived from this software |
| 4226 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4227 | |
| 4228 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4229 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4230 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4231 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4232 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4233 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4234 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4235 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4236 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4237 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4238 | |
| 4239 | ------------------------------------------------------------------- |
| 4240 | |
Elliott Hughes | 5c2264a | 2014-09-13 09:42:41 -0700 | [diff] [blame] | 4241 | Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org> |
| 4242 | |
| 4243 | Permission to use, copy, modify, and distribute this software for any |
| 4244 | purpose with or without fee is hereby granted, provided that the above |
| 4245 | copyright notice and this permission notice appear in all copies. |
| 4246 | |
| 4247 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4248 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4249 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4250 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4251 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4252 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4253 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4254 | |
| 4255 | ------------------------------------------------------------------- |
| 4256 | |
| 4257 | Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org> |
| 4258 | Copyright (c) 2009 Ted Unangst |
| 4259 | |
| 4260 | Permission to use, copy, modify, and distribute this software for any |
| 4261 | purpose with or without fee is hereby granted, provided that the above |
| 4262 | copyright notice and this permission notice appear in all copies. |
| 4263 | |
| 4264 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4265 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4266 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4267 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4268 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4269 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4270 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4271 | |
| 4272 | ------------------------------------------------------------------- |
| 4273 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4274 | Copyright (c) 2011 The Android Open Source Project |
| 4275 | Copyright (c) 2008 ARM Ltd |
| 4276 | All rights reserved. |
| 4277 | |
| 4278 | Redistribution and use in source and binary forms, with or without |
| 4279 | modification, are permitted provided that the following conditions |
| 4280 | are met: |
| 4281 | 1. Redistributions of source code must retain the above copyright |
| 4282 | notice, this list of conditions and the following disclaimer. |
| 4283 | 2. Redistributions in binary form must reproduce the above copyright |
| 4284 | notice, this list of conditions and the following disclaimer in the |
| 4285 | documentation and/or other materials provided with the distribution. |
| 4286 | 3. The name of the company may not be used to endorse or promote |
| 4287 | products derived from this software without specific prior written |
| 4288 | permission. |
| 4289 | |
| 4290 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 4291 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 4292 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4293 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4294 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 4295 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 4296 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 4297 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 4298 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4299 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4300 | |
| 4301 | ------------------------------------------------------------------- |
| 4302 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4303 | Copyright (c) 2011, 2012, 2013 Intel Corporation |
| 4304 | All rights reserved. |
| 4305 | |
| 4306 | Redistribution and use in source and binary forms, with or without |
| 4307 | modification, are permitted provided that the following conditions are met: |
| 4308 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4309 | * Redistributions of source code must retain the above copyright notice, |
| 4310 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4311 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4312 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4313 | * this list of conditions and the following disclaimer in the documentation |
| 4314 | * and/or other materials provided with the distribution. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4315 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4316 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4317 | * may be used to endorse or promote products derived from this software |
| 4318 | * without specific prior written permission. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4319 | |
| 4320 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4321 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4322 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4323 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4324 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4325 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4326 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4327 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4328 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4329 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4330 | |
| 4331 | ------------------------------------------------------------------- |
| 4332 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4333 | Copyright (c) 2011, Intel Corporation |
| 4334 | All rights reserved. |
| 4335 | |
| 4336 | Redistribution and use in source and binary forms, with or without |
| 4337 | modification, are permitted provided that the following conditions are met: |
| 4338 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4339 | * Redistributions of source code must retain the above copyright notice, |
| 4340 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4341 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4342 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4343 | * this list of conditions and the following disclaimer in the documentation |
| 4344 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4345 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4346 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4347 | * may be used to endorse or promote products derived from this software |
| 4348 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4349 | |
| 4350 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4351 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4352 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4353 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4354 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4355 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4356 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4357 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4358 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4359 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4360 | |
| 4361 | ------------------------------------------------------------------- |
| 4362 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4363 | Copyright (c) 2011, VMware, Inc. |
| 4364 | All rights reserved. |
| 4365 | |
| 4366 | Redistribution and use in source and binary forms, with or without |
| 4367 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4368 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4369 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4370 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4371 | notice, this list of conditions and the following disclaimer in the |
| 4372 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4373 | * Neither the name of the VMware, Inc. nor the names of its contributors |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4374 | may be used to endorse or promote products derived from this software |
| 4375 | without specific prior written permission. |
| 4376 | |
| 4377 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 4378 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4379 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4380 | ARE DISCLAIMED. IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR |
| 4381 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4382 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4383 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 4384 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4385 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4386 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4387 | |
| 4388 | ------------------------------------------------------------------- |
| 4389 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4390 | Copyright (c) 2012, Linaro Limited |
| 4391 | All rights reserved. |
| 4392 | |
| 4393 | Redistribution and use in source and binary forms, with or without |
| 4394 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4395 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4396 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4397 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4398 | notice, this list of conditions and the following disclaimer in the |
| 4399 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4400 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4401 | names of its contributors may be used to endorse or promote products |
| 4402 | derived from this software without specific prior written permission. |
| 4403 | |
| 4404 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4405 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4406 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4407 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4408 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4409 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4410 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4411 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4412 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4413 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4414 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4415 | |
| 4416 | ------------------------------------------------------------------- |
| 4417 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4418 | Copyright (c) 2012, Linaro Limited |
| 4419 | All rights reserved. |
| 4420 | Copyright (c) 2014, NVIDIA Corporation. All rights reserved. |
| 4421 | |
| 4422 | Redistribution and use in source and binary forms, with or without |
| 4423 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4424 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4425 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4426 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4427 | notice, this list of conditions and the following disclaimer in the |
| 4428 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4429 | * Neither the name of the Linaro nor the |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4430 | names of its contributors may be used to endorse or promote products |
| 4431 | derived from this software without specific prior written permission. |
| 4432 | |
| 4433 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4434 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4435 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4436 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4437 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4438 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4439 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4440 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4441 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4442 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4443 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4444 | |
| 4445 | ------------------------------------------------------------------- |
| 4446 | |
Elliott Hughes | 44ead71 | 2015-08-28 20:23:52 -0700 | [diff] [blame] | 4447 | Copyright (c) 2012-2015 |
| 4448 | MIPS Technologies, Inc., California. |
| 4449 | |
| 4450 | Redistribution and use in source and binary forms, with or without |
| 4451 | modification, are permitted provided that the following conditions |
| 4452 | are met: |
| 4453 | 1. Redistributions of source code must retain the above copyright |
| 4454 | notice, this list of conditions and the following disclaimer. |
| 4455 | 2. Redistributions in binary form must reproduce the above copyright |
| 4456 | notice, this list of conditions and the following disclaimer in the |
| 4457 | documentation and/or other materials provided with the distribution. |
| 4458 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 4459 | contributors may be used to endorse or promote products derived from |
| 4460 | this software without specific prior written permission. |
| 4461 | |
| 4462 | THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND |
| 4463 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4464 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4465 | ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE |
| 4466 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4467 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4468 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4469 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4470 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4471 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4472 | SUCH DAMAGE. |
| 4473 | |
| 4474 | ------------------------------------------------------------------- |
| 4475 | |
| 4476 | Copyright (c) 2013 |
| 4477 | MIPS Technologies, Inc., California. |
| 4478 | |
| 4479 | Redistribution and use in source and binary forms, with or without |
| 4480 | modification, are permitted provided that the following conditions |
| 4481 | are met: |
| 4482 | 1. Redistributions of source code must retain the above copyright |
| 4483 | notice, this list of conditions and the following disclaimer. |
| 4484 | 2. Redistributions in binary form must reproduce the above copyright |
| 4485 | notice, this list of conditions and the following disclaimer in the |
| 4486 | documentation and/or other materials provided with the distribution. |
| 4487 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 4488 | contributors may be used to endorse or promote products derived from |
| 4489 | this software without specific prior written permission. |
| 4490 | |
| 4491 | THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND |
| 4492 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4493 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4494 | ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE |
| 4495 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4496 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4497 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4498 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4499 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4500 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4501 | SUCH DAMAGE. |
| 4502 | |
| 4503 | ------------------------------------------------------------------- |
| 4504 | |
Elliott Hughes | 0493a6f | 2013-03-07 11:48:58 -0800 | [diff] [blame] | 4505 | Copyright (c) 2013 ARM Ltd |
| 4506 | All rights reserved. |
| 4507 | |
| 4508 | Redistribution and use in source and binary forms, with or without |
| 4509 | modification, are permitted provided that the following conditions |
| 4510 | are met: |
| 4511 | 1. Redistributions of source code must retain the above copyright |
| 4512 | notice, this list of conditions and the following disclaimer. |
| 4513 | 2. Redistributions in binary form must reproduce the above copyright |
| 4514 | notice, this list of conditions and the following disclaimer in the |
| 4515 | documentation and/or other materials provided with the distribution. |
| 4516 | 3. The name of the company may not be used to endorse or promote |
| 4517 | products derived from this software without specific prior written |
| 4518 | permission. |
| 4519 | |
| 4520 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 4521 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 4522 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4523 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4524 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 4525 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 4526 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 4527 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 4528 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4529 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4530 | |
| 4531 | ------------------------------------------------------------------- |
| 4532 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4533 | Copyright (c) 2013 Antoine Jacoutot <ajacoutot@openbsd.org> |
| 4534 | |
| 4535 | Permission to use, copy, modify, and distribute this software for any |
| 4536 | purpose with or without fee is hereby granted, provided that the above |
| 4537 | copyright notice and this permission notice appear in all copies. |
| 4538 | |
| 4539 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4540 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4541 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4542 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4543 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4544 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4545 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4546 | |
| 4547 | ------------------------------------------------------------------- |
| 4548 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 4549 | Copyright (c) 2013 The NetBSD Foundation, Inc. |
| 4550 | All rights reserved. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 4551 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 4552 | This code is derived from software contributed to The NetBSD Foundation |
| 4553 | by Christos Zoulas. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 4554 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 4555 | Redistribution and use in source and binary forms, with or without |
| 4556 | modification, are permitted provided that the following conditions |
| 4557 | are met: |
| 4558 | 1. Redistributions of source code must retain the above copyright |
| 4559 | notice, this list of conditions and the following disclaimer. |
| 4560 | 2. Redistributions in binary form must reproduce the above copyright |
| 4561 | notice, this list of conditions and the following disclaimer in the |
| 4562 | documentation and/or other materials provided with the distribution. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 4563 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 4564 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 4565 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 4566 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 4567 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 4568 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 4569 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 4570 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 4571 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 4572 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 4573 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 4574 | POSSIBILITY OF SUCH DAMAGE. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 4575 | |
| 4576 | ------------------------------------------------------------------- |
| 4577 | |
Elliott Hughes | 44ead71 | 2015-08-28 20:23:52 -0700 | [diff] [blame] | 4578 | Copyright (c) 2014 |
| 4579 | Imagination Technologies Limited. |
| 4580 | |
| 4581 | Redistribution and use in source and binary forms, with or without |
| 4582 | modification, are permitted provided that the following conditions |
| 4583 | are met: |
| 4584 | 1. Redistributions of source code must retain the above copyright |
| 4585 | notice, this list of conditions and the following disclaimer. |
| 4586 | 2. Redistributions in binary form must reproduce the above copyright |
| 4587 | notice, this list of conditions and the following disclaimer in the |
| 4588 | documentation and/or other materials provided with the distribution. |
| 4589 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 4590 | contributors may be used to endorse or promote products derived from |
| 4591 | this software without specific prior written permission. |
| 4592 | |
| 4593 | THIS SOFTWARE IS PROVIDED BY IMAGINATION TECHNOLOGIES LIMITED ``AS IS'' AND |
| 4594 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4595 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4596 | ARE DISCLAIMED. IN NO EVENT SHALL IMAGINATION TECHNOLOGIES LIMITED BE LIABLE |
| 4597 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4598 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4599 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4600 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4601 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4602 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4603 | SUCH DAMAGE. |
| 4604 | |
| 4605 | ------------------------------------------------------------------- |
| 4606 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4607 | Copyright (c) 2014 Theo de Raadt <deraadt@openbsd.org> |
| 4608 | Copyright (c) 2014 Bob Beck <beck@obtuse.com> |
| 4609 | |
| 4610 | Permission to use, copy, modify, and distribute this software for any |
| 4611 | purpose with or without fee is hereby granted, provided that the above |
| 4612 | copyright notice and this permission notice appear in all copies. |
| 4613 | |
| 4614 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4615 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4616 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4617 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4618 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4619 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4620 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4621 | |
| 4622 | Emulation of getentropy(2) as documented at: |
| 4623 | http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man2/getentropy.2 |
| 4624 | |
| 4625 | ------------------------------------------------------------------- |
| 4626 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4627 | Copyright (c) 2014, Intel Corporation |
| 4628 | All rights reserved. |
| 4629 | |
| 4630 | Redistribution and use in source and binary forms, with or without |
| 4631 | modification, are permitted provided that the following conditions are met: |
| 4632 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4633 | * Redistributions of source code must retain the above copyright notice, |
| 4634 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4635 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4636 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4637 | * this list of conditions and the following disclaimer in the documentation |
| 4638 | * and/or other materials provided with the distribution. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4639 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4640 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4641 | * may be used to endorse or promote products derived from this software |
| 4642 | * without specific prior written permission. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4643 | |
| 4644 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4645 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4646 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4647 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4648 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4649 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4650 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4651 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4652 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4653 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4654 | |
| 4655 | ------------------------------------------------------------------- |
| 4656 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4657 | Copyright (c) 2014, Linaro Limited |
| 4658 | All rights reserved. |
| 4659 | |
| 4660 | Redistribution and use in source and binary forms, with or without |
| 4661 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4662 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4663 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4664 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4665 | notice, this list of conditions and the following disclaimer in the |
| 4666 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4667 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4668 | names of its contributors may be used to endorse or promote products |
| 4669 | derived from this software without specific prior written permission. |
| 4670 | |
| 4671 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4672 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4673 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4674 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4675 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4676 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4677 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4678 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4679 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4680 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4681 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4682 | |
| 4683 | ------------------------------------------------------------------- |
| 4684 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 4685 | Copyright (c) 2015 Joerg Sonnenberger <joerg@NetBSD.org>. |
| 4686 | All rights reserved. |
| 4687 | |
| 4688 | Redistribution and use in source and binary forms, with or without |
| 4689 | modification, are permitted provided that the following conditions |
| 4690 | are met: |
| 4691 | |
| 4692 | 1. Redistributions of source code must retain the above copyright |
| 4693 | notice, this list of conditions and the following disclaimer. |
| 4694 | 2. Redistributions in binary form must reproduce the above copyright |
| 4695 | notice, this list of conditions and the following disclaimer in |
| 4696 | the documentation and/or other materials provided with the |
| 4697 | distribution. |
| 4698 | |
| 4699 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4700 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4701 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 4702 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 4703 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4704 | INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 4705 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4706 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 4707 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 4708 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 4709 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4710 | SUCH DAMAGE. |
| 4711 | |
| 4712 | ------------------------------------------------------------------- |
| 4713 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4714 | Copyright (c)1999 Citrus Project, |
| 4715 | All rights reserved. |
| 4716 | |
| 4717 | Redistribution and use in source and binary forms, with or without |
| 4718 | modification, are permitted provided that the following conditions |
| 4719 | are met: |
| 4720 | 1. Redistributions of source code must retain the above copyright |
| 4721 | notice, this list of conditions and the following disclaimer. |
| 4722 | 2. Redistributions in binary form must reproduce the above copyright |
| 4723 | notice, this list of conditions and the following disclaimer in the |
| 4724 | documentation and/or other materials provided with the distribution. |
| 4725 | |
| 4726 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4727 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4728 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4729 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4730 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4731 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4732 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4733 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4734 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4735 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4736 | SUCH DAMAGE. |
| 4737 | |
| 4738 | ------------------------------------------------------------------- |
| 4739 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 4740 | Copyright (c)1999, 2000, 2001 Citrus Project, |
| 4741 | All rights reserved. |
| 4742 | |
| 4743 | Redistribution and use in source and binary forms, with or without |
| 4744 | modification, are permitted provided that the following conditions |
| 4745 | are met: |
| 4746 | 1. Redistributions of source code must retain the above copyright |
| 4747 | notice, this list of conditions and the following disclaimer. |
| 4748 | 2. Redistributions in binary form must reproduce the above copyright |
| 4749 | notice, this list of conditions and the following disclaimer in the |
| 4750 | documentation and/or other materials provided with the distribution. |
| 4751 | |
| 4752 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4753 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4754 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4755 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4756 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4757 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4758 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4759 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4760 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4761 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4762 | SUCH DAMAGE. |
| 4763 | |
| 4764 | ------------------------------------------------------------------- |
| 4765 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4766 | Copyright (c)2001 Citrus Project, |
| 4767 | All rights reserved. |
| 4768 | |
| 4769 | Redistribution and use in source and binary forms, with or without |
| 4770 | modification, are permitted provided that the following conditions |
| 4771 | are met: |
| 4772 | 1. Redistributions of source code must retain the above copyright |
| 4773 | notice, this list of conditions and the following disclaimer. |
| 4774 | 2. Redistributions in binary form must reproduce the above copyright |
| 4775 | notice, this list of conditions and the following disclaimer in the |
| 4776 | documentation and/or other materials provided with the distribution. |
| 4777 | |
| 4778 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4779 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4780 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4781 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4782 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4783 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4784 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4785 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4786 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4787 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4788 | SUCH DAMAGE. |
| 4789 | |
| 4790 | ------------------------------------------------------------------- |
| 4791 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4792 | Copyright (c)2003 Citrus Project, |
| 4793 | All rights reserved. |
| 4794 | |
| 4795 | Redistribution and use in source and binary forms, with or without |
| 4796 | modification, are permitted provided that the following conditions |
| 4797 | are met: |
| 4798 | 1. Redistributions of source code must retain the above copyright |
| 4799 | notice, this list of conditions and the following disclaimer. |
| 4800 | 2. Redistributions in binary form must reproduce the above copyright |
| 4801 | notice, this list of conditions and the following disclaimer in the |
| 4802 | documentation and/or other materials provided with the distribution. |
| 4803 | |
| 4804 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4805 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4806 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4807 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4808 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4809 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4810 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4811 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4812 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4813 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4814 | SUCH DAMAGE. |
| 4815 | |
| 4816 | ------------------------------------------------------------------- |
| 4817 | |
Elliott Hughes | 5c2264a | 2014-09-13 09:42:41 -0700 | [diff] [blame] | 4818 | Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> |
| 4819 | Copyright 2008 Damien Miller <djm@openbsd.org> |
| 4820 | All rights reserved. |
| 4821 | |
| 4822 | Theo de Raadt <deraadt@openbsd.org> came up with the idea of using |
| 4823 | such a mathematical system to generate more random (yet non-repeating) |
| 4824 | ids to solve the resolver/named problem. But Niels designed the |
| 4825 | actual system based on the constraints. |
| 4826 | |
| 4827 | Later modified by Damien Miller to wrap the LCG output in a 15-bit |
| 4828 | permutation generator based on a Luby-Rackoff block cipher. This |
| 4829 | ensures the output is non-repeating and preserves the MSB twiddle |
| 4830 | trick, but makes it more resistant to LCG prediction. |
| 4831 | |
| 4832 | Redistribution and use in source and binary forms, with or without |
| 4833 | modification, are permitted provided that the following conditions |
| 4834 | are met: |
| 4835 | 1. Redistributions of source code must retain the above copyright |
| 4836 | notice, this list of conditions and the following disclaimer. |
| 4837 | 2. Redistributions in binary form must reproduce the above copyright |
| 4838 | notice, this list of conditions and the following disclaimer in the |
| 4839 | documentation and/or other materials provided with the distribution. |
| 4840 | |
| 4841 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4842 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4843 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4844 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4845 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4846 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4847 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4848 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4849 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4850 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4851 | |
| 4852 | ------------------------------------------------------------------- |
| 4853 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4854 | Copyright 2008 Android Open Source Project (source port randomization) |
| 4855 | Copyright (c) 1985, 1989, 1993 |
| 4856 | The Regents of the University of California. All rights reserved. |
| 4857 | |
| 4858 | Redistribution and use in source and binary forms, with or without |
| 4859 | modification, are permitted provided that the following conditions |
| 4860 | are met: |
| 4861 | 1. Redistributions of source code must retain the above copyright |
| 4862 | notice, this list of conditions and the following disclaimer. |
| 4863 | 2. Redistributions in binary form must reproduce the above copyright |
| 4864 | notice, this list of conditions and the following disclaimer in the |
| 4865 | documentation and/or other materials provided with the distribution. |
| 4866 | 3. All advertising materials mentioning features or use of this software |
| 4867 | must display the following acknowledgement: |
| 4868 | This product includes software developed by the University of |
| 4869 | California, Berkeley and its contributors. |
| 4870 | 4. Neither the name of the University nor the names of its contributors |
| 4871 | may be used to endorse or promote products derived from this software |
| 4872 | without specific prior written permission. |
| 4873 | |
| 4874 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 4875 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4876 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4877 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 4878 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4879 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4880 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4881 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4882 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4883 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4884 | SUCH DAMAGE. |
| 4885 | |
| 4886 | ------------------------------------------------------------------- |
| 4887 | |
Calin Juravle | c4fbf92 | 2014-03-10 11:23:52 +0000 | [diff] [blame] | 4888 | Portions Copyright (C) 2004, 2005, 2008, 2009 Internet Systems Consortium, Inc. ("ISC") |
| 4889 | Portions Copyright (C) 1996-2003 Internet Software Consortium. |
| 4890 | |
| 4891 | Permission to use, copy, modify, and/or distribute this software for any |
| 4892 | purpose with or without fee is hereby granted, provided that the above |
| 4893 | copyright notice and this permission notice appear in all copies. |
| 4894 | |
| 4895 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 4896 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 4897 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 4898 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 4899 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 4900 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 4901 | PERFORMANCE OF THIS SOFTWARE. |
| 4902 | |
| 4903 | ------------------------------------------------------------------- |
| 4904 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4905 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 4906 | |
| 4907 | Permission to use, copy, modify, and distribute this software for any |
| 4908 | purpose with or without fee is hereby granted, provided that the above |
| 4909 | copyright notice and this permission notice appear in all copies, and that |
| 4910 | the name of Digital Equipment Corporation not be used in advertising or |
| 4911 | publicity pertaining to distribution of the document or software without |
| 4912 | specific, written prior permission. |
| 4913 | |
| 4914 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 4915 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 4916 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 4917 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 4918 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 4919 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 4920 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 4921 | SOFTWARE. |
| 4922 | |
| 4923 | ------------------------------------------------------------------- |
| 4924 | |
| 4925 | Portions Copyright (c) 1995 by International Business Machines, Inc. |
| 4926 | |
| 4927 | International Business Machines, Inc. (hereinafter called IBM) grants |
| 4928 | permission under its copyrights to use, copy, modify, and distribute this |
| 4929 | Software with or without fee, provided that the above copyright notice and |
| 4930 | all paragraphs of this notice appear in all copies, and that the name of IBM |
| 4931 | not be used in connection with the marketing of any product incorporating |
| 4932 | the Software or modifications thereof, without specific, written prior |
| 4933 | permission. |
| 4934 | |
| 4935 | To the extent it has a right to do so, IBM grants an immunity from suit |
| 4936 | under its patents, if any, for the use, sale or manufacture of products to |
| 4937 | the extent that such products are used for performing Domain Name System |
| 4938 | dynamic updates in TCP/IP networks by means of the Software. No immunity is |
| 4939 | granted for any product per se or for any other function of any product. |
| 4940 | |
| 4941 | THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, |
| 4942 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 4943 | PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, |
| 4944 | DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING |
| 4945 | OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN |
| 4946 | IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. |
| 4947 | |
| 4948 | ------------------------------------------------------------------- |
| 4949 | |
| 4950 | Portions Copyright(C) 1995, Jason Downs. All rights reserved. |
| 4951 | |
| 4952 | Redistribution and use in source and binary forms, with or without |
| 4953 | modification, are permitted provided that the following conditions |
| 4954 | are met: |
| 4955 | 1. Redistributions of source code must retain the above copyright |
| 4956 | notice, this list of conditions and the following disclaimer. |
| 4957 | 2. Redistributions in binary form must reproduce the above copyright |
| 4958 | notice, this list of conditions and the following disclaimer in the |
| 4959 | documentation and/or other materials provided with the distribution. |
| 4960 | |
| 4961 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS |
| 4962 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4963 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4964 | DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, |
| 4965 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4966 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 4967 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 4968 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4969 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4970 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4971 | SUCH DAMAGE. |
| 4972 | |
| 4973 | ------------------------------------------------------------------- |
| 4974 | |
| 4975 | The author of this software is David M. Gay. |
| 4976 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4977 | Copyright (C) 1998 by Lucent Technologies |
| 4978 | All Rights Reserved |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4979 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4980 | Permission to use, copy, modify, and distribute this software and |
| 4981 | its documentation for any purpose and without fee is hereby |
| 4982 | granted, provided that the above copyright notice appear in all |
| 4983 | copies and that both that the copyright notice and this |
| 4984 | permission notice and warranty disclaimer appear in supporting |
| 4985 | documentation, and that the name of Lucent or any of its entities |
| 4986 | not be used in advertising or publicity pertaining to |
| 4987 | distribution of the software without specific, written prior |
| 4988 | permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4989 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4990 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 4991 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 4992 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 4993 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4994 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 4995 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 4996 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 4997 | THIS SOFTWARE. |
| 4998 | |
| 4999 | ------------------------------------------------------------------- |
| 5000 | |
| 5001 | The author of this software is David M. Gay. |
| 5002 | |
| 5003 | Copyright (C) 1998, 1999 by Lucent Technologies |
| 5004 | All Rights Reserved |
| 5005 | |
| 5006 | Permission to use, copy, modify, and distribute this software and |
| 5007 | its documentation for any purpose and without fee is hereby |
| 5008 | granted, provided that the above copyright notice appear in all |
| 5009 | copies and that both that the copyright notice and this |
| 5010 | permission notice and warranty disclaimer appear in supporting |
| 5011 | documentation, and that the name of Lucent or any of its entities |
| 5012 | not be used in advertising or publicity pertaining to |
| 5013 | distribution of the software without specific, written prior |
| 5014 | permission. |
| 5015 | |
| 5016 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5017 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5018 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5019 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5020 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5021 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5022 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5023 | THIS SOFTWARE. |
| 5024 | |
| 5025 | ------------------------------------------------------------------- |
| 5026 | |
| 5027 | The author of this software is David M. Gay. |
| 5028 | |
| 5029 | Copyright (C) 1998, 2000 by Lucent Technologies |
| 5030 | All Rights Reserved |
| 5031 | |
| 5032 | Permission to use, copy, modify, and distribute this software and |
| 5033 | its documentation for any purpose and without fee is hereby |
| 5034 | granted, provided that the above copyright notice appear in all |
| 5035 | copies and that both that the copyright notice and this |
| 5036 | permission notice and warranty disclaimer appear in supporting |
| 5037 | documentation, and that the name of Lucent or any of its entities |
| 5038 | not be used in advertising or publicity pertaining to |
| 5039 | distribution of the software without specific, written prior |
| 5040 | permission. |
| 5041 | |
| 5042 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5043 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5044 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5045 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5046 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5047 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5048 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5049 | THIS SOFTWARE. |
| 5050 | |
| 5051 | ------------------------------------------------------------------- |
| 5052 | |
| 5053 | The author of this software is David M. Gay. |
| 5054 | |
| 5055 | Copyright (C) 1998-2000 by Lucent Technologies |
| 5056 | All Rights Reserved |
| 5057 | |
| 5058 | Permission to use, copy, modify, and distribute this software and |
| 5059 | its documentation for any purpose and without fee is hereby |
| 5060 | granted, provided that the above copyright notice appear in all |
| 5061 | copies and that both that the copyright notice and this |
| 5062 | permission notice and warranty disclaimer appear in supporting |
| 5063 | documentation, and that the name of Lucent or any of its entities |
| 5064 | not be used in advertising or publicity pertaining to |
| 5065 | distribution of the software without specific, written prior |
| 5066 | permission. |
| 5067 | |
| 5068 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5069 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5070 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5071 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5072 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5073 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5074 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5075 | THIS SOFTWARE. |
| 5076 | |
| 5077 | ------------------------------------------------------------------- |
| 5078 | |
| 5079 | The author of this software is David M. Gay. |
| 5080 | |
| 5081 | Copyright (C) 1998-2001 by Lucent Technologies |
| 5082 | All Rights Reserved |
| 5083 | |
| 5084 | Permission to use, copy, modify, and distribute this software and |
| 5085 | its documentation for any purpose and without fee is hereby |
| 5086 | granted, provided that the above copyright notice appear in all |
| 5087 | copies and that both that the copyright notice and this |
| 5088 | permission notice and warranty disclaimer appear in supporting |
| 5089 | documentation, and that the name of Lucent or any of its entities |
| 5090 | not be used in advertising or publicity pertaining to |
| 5091 | distribution of the software without specific, written prior |
| 5092 | permission. |
| 5093 | |
| 5094 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5095 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5096 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5097 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5098 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5099 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5100 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5101 | THIS SOFTWARE. |
| 5102 | |
| 5103 | ------------------------------------------------------------------- |
| 5104 | |
| 5105 | The author of this software is David M. Gay. |
| 5106 | |
| 5107 | Copyright (C) 2000 by Lucent Technologies |
| 5108 | All Rights Reserved |
| 5109 | |
| 5110 | Permission to use, copy, modify, and distribute this software and |
| 5111 | its documentation for any purpose and without fee is hereby |
| 5112 | granted, provided that the above copyright notice appear in all |
| 5113 | copies and that both that the copyright notice and this |
| 5114 | permission notice and warranty disclaimer appear in supporting |
| 5115 | documentation, and that the name of Lucent or any of its entities |
| 5116 | not be used in advertising or publicity pertaining to |
| 5117 | distribution of the software without specific, written prior |
| 5118 | permission. |
| 5119 | |
| 5120 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5121 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5122 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5123 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5124 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5125 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5126 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5127 | THIS SOFTWARE. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5128 | |
| 5129 | ------------------------------------------------------------------- |
| 5130 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5131 | memchr - find a character in a memory zone |
| 5132 | |
| 5133 | Copyright (c) 2014, ARM Limited |
| 5134 | All rights Reserved. |
| 5135 | Copyright (c) 2014, Linaro Ltd. |
| 5136 | |
| 5137 | Redistribution and use in source and binary forms, with or without |
| 5138 | modification, are permitted provided that the following conditions are met: |
| 5139 | * Redistributions of source code must retain the above copyright |
| 5140 | notice, this list of conditions and the following disclaimer. |
| 5141 | * Redistributions in binary form must reproduce the above copyright |
| 5142 | notice, this list of conditions and the following disclaimer in the |
| 5143 | documentation and/or other materials provided with the distribution. |
| 5144 | * Neither the name of the company nor the names of its contributors |
| 5145 | may be used to endorse or promote products derived from this |
| 5146 | software without specific prior written permission. |
| 5147 | |
| 5148 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5149 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5150 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5151 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5152 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5153 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5154 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5155 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5156 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5157 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5158 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5159 | |
| 5160 | ------------------------------------------------------------------- |
| 5161 | |