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 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1460 | Redistribution and use in source and binary forms, with or without |
| 1461 | modification, are permitted provided that the following conditions |
| 1462 | are met: |
| 1463 | 1. Redistributions of source code must retain the above copyright |
| 1464 | notice, this list of conditions and the following disclaimer. |
| 1465 | 2. Redistributions in binary form must reproduce the above copyright |
| 1466 | notice, this list of conditions and the following disclaimer in the |
| 1467 | documentation and/or other materials provided with the distribution. |
| 1468 | 3. Neither the name of the University nor the names of its contributors |
| 1469 | may be used to endorse or promote products derived from this software |
| 1470 | without specific prior written permission. |
| 1471 | |
| 1472 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1473 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1474 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1475 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1476 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1477 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1478 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1479 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1480 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1481 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1482 | SUCH DAMAGE. |
| 1483 | |
| 1484 | ------------------------------------------------------------------- |
| 1485 | |
| 1486 | Copyright (c) 1989 The Regents of the University of California. |
| 1487 | All rights reserved. |
| 1488 | (c) UNIX System Laboratories, Inc. |
| 1489 | All or some portions of this file are derived from material licensed |
| 1490 | to the University of California by American Telephone and Telegraph |
| 1491 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1492 | the permission of UNIX System Laboratories, Inc. |
| 1493 | |
| 1494 | Redistribution and use in source and binary forms, with or without |
| 1495 | modification, are permitted provided that the following conditions |
| 1496 | are met: |
| 1497 | 1. Redistributions of source code must retain the above copyright |
| 1498 | notice, this list of conditions and the following disclaimer. |
| 1499 | 2. Redistributions in binary form must reproduce the above copyright |
| 1500 | notice, this list of conditions and the following disclaimer in the |
| 1501 | documentation and/or other materials provided with the distribution. |
| 1502 | 3. Neither the name of the University nor the names of its contributors |
| 1503 | may be used to endorse or promote products derived from this software |
| 1504 | without specific prior written permission. |
| 1505 | |
| 1506 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1507 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1508 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1509 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1510 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1511 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1512 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1513 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1514 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1515 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1516 | SUCH DAMAGE. |
| 1517 | |
| 1518 | ------------------------------------------------------------------- |
| 1519 | |
| 1520 | Copyright (c) 1989, 1993 |
| 1521 | The Regents of the University of California. All rights reserved. |
| 1522 | |
| 1523 | Redistribution and use in source and binary forms, with or without |
| 1524 | modification, are permitted provided that the following conditions |
| 1525 | are met: |
| 1526 | 1. Redistributions of source code must retain the above copyright |
| 1527 | notice, this list of conditions and the following disclaimer. |
| 1528 | 2. Redistributions in binary form must reproduce the above copyright |
| 1529 | notice, this list of conditions and the following disclaimer in the |
| 1530 | documentation and/or other materials provided with the distribution. |
| 1531 | 3. Neither the name of the University nor the names of its contributors |
| 1532 | may be used to endorse or promote products derived from this software |
| 1533 | without specific prior written permission. |
| 1534 | |
| 1535 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1536 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1537 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1538 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1539 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1540 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1541 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1542 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1543 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1544 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1545 | SUCH DAMAGE. |
| 1546 | |
| 1547 | ------------------------------------------------------------------- |
| 1548 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1549 | Copyright (c) 1989, 1993 |
| 1550 | The Regents of the University of California. All rights reserved. |
| 1551 | |
| 1552 | Redistribution and use in source and binary forms, with or without |
| 1553 | modification, are permitted provided that the following conditions |
| 1554 | are met: |
| 1555 | 1. Redistributions of source code must retain the above copyright |
| 1556 | notice, this list of conditions and the following disclaimer. |
| 1557 | 2. Redistributions in binary form must reproduce the above copyright |
| 1558 | notice, this list of conditions and the following disclaimer in the |
| 1559 | documentation and/or other materials provided with the distribution. |
| 1560 | 4. Neither the name of the University nor the names of its contributors |
| 1561 | may be used to endorse or promote products derived from this software |
| 1562 | without specific prior written permission. |
| 1563 | |
| 1564 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1565 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1566 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1567 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1568 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1569 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1570 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1571 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1572 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1573 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1574 | SUCH DAMAGE. |
| 1575 | |
| 1576 | ------------------------------------------------------------------- |
| 1577 | |
| 1578 | Copyright (c) 1989, 1993 |
| 1579 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 1580 | |
| 1581 | This code is derived from software contributed to Berkeley by |
| 1582 | Roger L. Snyder. |
| 1583 | |
| 1584 | Redistribution and use in source and binary forms, with or without |
| 1585 | modification, are permitted provided that the following conditions |
| 1586 | are met: |
| 1587 | 1. Redistributions of source code must retain the above copyright |
| 1588 | notice, this list of conditions and the following disclaimer. |
| 1589 | 2. Redistributions in binary form must reproduce the above copyright |
| 1590 | notice, this list of conditions and the following disclaimer in the |
| 1591 | documentation and/or other materials provided with the distribution. |
| 1592 | 3. Neither the name of the University nor the names of its contributors |
| 1593 | may be used to endorse or promote products derived from this software |
| 1594 | without specific prior written permission. |
| 1595 | |
| 1596 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1597 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1598 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1599 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1600 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1601 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1602 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1603 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1604 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1605 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1606 | SUCH DAMAGE. |
| 1607 | |
| 1608 | ------------------------------------------------------------------- |
| 1609 | |
| 1610 | Copyright (c) 1989, 1993 |
| 1611 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1612 | (c) UNIX System Laboratories, Inc. |
| 1613 | All or some portions of this file are derived from material licensed |
| 1614 | to the University of California by American Telephone and Telegraph |
| 1615 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1616 | the permission of UNIX System Laboratories, Inc. |
| 1617 | |
| 1618 | Redistribution and use in source and binary forms, with or without |
| 1619 | modification, are permitted provided that the following conditions |
| 1620 | are met: |
| 1621 | 1. Redistributions of source code must retain the above copyright |
| 1622 | notice, this list of conditions and the following disclaimer. |
| 1623 | 2. Redistributions in binary form must reproduce the above copyright |
| 1624 | notice, this list of conditions and the following disclaimer in the |
| 1625 | documentation and/or other materials provided with the distribution. |
| 1626 | 3. Neither the name of the University nor the names of its contributors |
| 1627 | may be used to endorse or promote products derived from this software |
| 1628 | without specific prior written permission. |
| 1629 | |
| 1630 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1631 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1632 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1633 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1634 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1635 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1636 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1637 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1638 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1639 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1640 | SUCH DAMAGE. |
| 1641 | |
| 1642 | ------------------------------------------------------------------- |
| 1643 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 1644 | Copyright (c) 1990 Regents of the University of California. |
| 1645 | All rights reserved. |
| 1646 | |
| 1647 | This code is derived from software contributed to Berkeley by |
| 1648 | Chris Torek. |
| 1649 | |
| 1650 | Redistribution and use in source and binary forms, with or without |
| 1651 | modification, are permitted provided that the following conditions |
| 1652 | are met: |
| 1653 | 1. Redistributions of source code must retain the above copyright |
| 1654 | notice, this list of conditions and the following disclaimer. |
| 1655 | 2. Redistributions in binary form must reproduce the above copyright |
| 1656 | notice, this list of conditions and the following disclaimer in the |
| 1657 | documentation and/or other materials provided with the distribution. |
| 1658 | 3. Neither the name of the University nor the names of its contributors |
| 1659 | may be used to endorse or promote products derived from this software |
| 1660 | without specific prior written permission. |
| 1661 | |
| 1662 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1663 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1664 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1665 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1666 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1667 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1668 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1669 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1670 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1671 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1672 | SUCH DAMAGE. |
| 1673 | |
| 1674 | ------------------------------------------------------------------- |
| 1675 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1676 | Copyright (c) 1990 The Regents of the University of California. |
| 1677 | All rights reserved. |
| 1678 | |
| 1679 | Redistribution and use in source and binary forms, with or without |
| 1680 | modification, are permitted provided that the following conditions |
| 1681 | are met: |
| 1682 | 1. Redistributions of source code must retain the above copyright |
| 1683 | notice, this list of conditions and the following disclaimer. |
| 1684 | 2. Redistributions in binary form must reproduce the above copyright |
| 1685 | notice, this list of conditions and the following disclaimer in the |
| 1686 | documentation and/or other materials provided with the distribution. |
| 1687 | 3. Neither the name of the University nor the names of its contributors |
| 1688 | may be used to endorse or promote products derived from this software |
| 1689 | without specific prior written permission. |
| 1690 | |
| 1691 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1692 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1693 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1694 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1695 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1696 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1697 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1698 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1699 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1700 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1701 | SUCH DAMAGE. |
| 1702 | |
| 1703 | ------------------------------------------------------------------- |
| 1704 | |
| 1705 | Copyright (c) 1990 The Regents of the University of California. |
| 1706 | All rights reserved. |
| 1707 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1708 | This code is derived from software contributed to Berkeley by |
| 1709 | Chris Torek. |
| 1710 | |
| 1711 | Redistribution and use in source and binary forms, with or without |
| 1712 | modification, are permitted provided that the following conditions |
| 1713 | are met: |
| 1714 | 1. Redistributions of source code must retain the above copyright |
| 1715 | notice, this list of conditions and the following disclaimer. |
| 1716 | 2. Redistributions in binary form must reproduce the above copyright |
| 1717 | notice, this list of conditions and the following disclaimer in the |
| 1718 | documentation and/or other materials provided with the distribution. |
| 1719 | 3. Neither the name of the University nor the names of its contributors |
| 1720 | may be used to endorse or promote products derived from this software |
| 1721 | without specific prior written permission. |
| 1722 | |
| 1723 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1724 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1725 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1726 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1727 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1728 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1729 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1730 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1731 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1732 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1733 | SUCH DAMAGE. |
| 1734 | |
| 1735 | ------------------------------------------------------------------- |
| 1736 | |
| 1737 | Copyright (c) 1990 The Regents of the University of California. |
| 1738 | All rights reserved. |
| 1739 | |
| 1740 | This code is derived from software contributed to Berkeley by |
| 1741 | William Jolitz. |
| 1742 | |
| 1743 | Redistribution and use in source and binary forms, with or without |
| 1744 | modification, are permitted provided that the following conditions |
| 1745 | are met: |
| 1746 | 1. Redistributions of source code must retain the above copyright |
| 1747 | notice, this list of conditions and the following disclaimer. |
| 1748 | 2. Redistributions in binary form must reproduce the above copyright |
| 1749 | notice, this list of conditions and the following disclaimer in the |
| 1750 | documentation and/or other materials provided with the distribution. |
| 1751 | 3. Neither the name of the University nor the names of its contributors |
| 1752 | may be used to endorse or promote products derived from this software |
| 1753 | without specific prior written permission. |
| 1754 | |
| 1755 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1756 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1757 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1758 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1759 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1760 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1761 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1762 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1763 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1764 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1765 | SUCH DAMAGE. |
| 1766 | |
| 1767 | ------------------------------------------------------------------- |
| 1768 | |
| 1769 | Copyright (c) 1990, 1993 |
| 1770 | The Regents of the University of California. All rights reserved. |
| 1771 | |
| 1772 | Redistribution and use in source and binary forms, with or without |
| 1773 | modification, are permitted provided that the following conditions |
| 1774 | are met: |
| 1775 | 1. Redistributions of source code must retain the above copyright |
| 1776 | notice, this list of conditions and the following disclaimer. |
| 1777 | 2. Redistributions in binary form must reproduce the above copyright |
| 1778 | notice, this list of conditions and the following disclaimer in the |
| 1779 | documentation and/or other materials provided with the distribution. |
| 1780 | 3. Neither the name of the University nor the names of its contributors |
| 1781 | may be used to endorse or promote products derived from this software |
| 1782 | without specific prior written permission. |
| 1783 | |
| 1784 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1785 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1786 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1787 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1788 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1789 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1790 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1791 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1792 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1793 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1794 | SUCH DAMAGE. |
| 1795 | |
| 1796 | ------------------------------------------------------------------- |
| 1797 | |
| 1798 | Copyright (c) 1990, 1993 |
| 1799 | The Regents of the University of California. All rights reserved. |
| 1800 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1801 | This code is derived from software contributed to Berkeley by |
| 1802 | Chris Torek. |
| 1803 | |
| 1804 | Redistribution and use in source and binary forms, with or without |
| 1805 | modification, are permitted provided that the following conditions |
| 1806 | are met: |
| 1807 | 1. Redistributions of source code must retain the above copyright |
| 1808 | notice, this list of conditions and the following disclaimer. |
| 1809 | 2. Redistributions in binary form must reproduce the above copyright |
| 1810 | notice, this list of conditions and the following disclaimer in the |
| 1811 | documentation and/or other materials provided with the distribution. |
| 1812 | 3. Neither the name of the University nor the names of its contributors |
| 1813 | may be used to endorse or promote products derived from this software |
| 1814 | without specific prior written permission. |
| 1815 | |
| 1816 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1817 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1818 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1819 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1820 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1821 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1822 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1823 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1824 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1825 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1826 | SUCH DAMAGE. |
| 1827 | |
| 1828 | ------------------------------------------------------------------- |
| 1829 | |
| 1830 | Copyright (c) 1990, 1993 |
| 1831 | The Regents of the University of California. All rights reserved. |
| 1832 | |
| 1833 | This code is derived from software contributed to Berkeley by |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1834 | Donn Seeley at UUNET Technologies, Inc. |
| 1835 | |
| 1836 | Redistribution and use in source and binary forms, with or without |
| 1837 | modification, are permitted provided that the following conditions |
| 1838 | are met: |
| 1839 | 1. Redistributions of source code must retain the above copyright |
| 1840 | notice, this list of conditions and the following disclaimer. |
| 1841 | 2. Redistributions in binary form must reproduce the above copyright |
| 1842 | notice, this list of conditions and the following disclaimer in the |
| 1843 | documentation and/or other materials provided with the distribution. |
| 1844 | 3. Neither the name of the University nor the names of its contributors |
| 1845 | may be used to endorse or promote products derived from this software |
| 1846 | without specific prior written permission. |
| 1847 | |
| 1848 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1849 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1850 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1851 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1852 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1853 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1854 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1855 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1856 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1857 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1858 | SUCH DAMAGE. |
| 1859 | |
| 1860 | ------------------------------------------------------------------- |
| 1861 | |
| 1862 | Copyright (c) 1990, 1993 |
| 1863 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 1864 | |
| 1865 | This code is derived from software contributed to Berkeley by |
| 1866 | Donn Seeley at UUNET Technologies, Inc. |
| 1867 | |
| 1868 | Redistribution and use in source and binary forms, with or without |
| 1869 | modification, are permitted provided that the following conditions |
| 1870 | are met: |
| 1871 | 1. Redistributions of source code must retain the above copyright |
| 1872 | notice, this list of conditions and the following disclaimer. |
| 1873 | 2. Redistributions in binary form must reproduce the above copyright |
| 1874 | notice, this list of conditions and the following disclaimer in the |
| 1875 | documentation and/or other materials provided with the distribution. |
| 1876 | 4. Neither the name of the University nor the names of its contributors |
| 1877 | may be used to endorse or promote products derived from this software |
| 1878 | without specific prior written permission. |
| 1879 | |
| 1880 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1881 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1882 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1883 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1884 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1885 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1886 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1887 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1888 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1889 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1890 | SUCH DAMAGE. |
| 1891 | |
| 1892 | ------------------------------------------------------------------- |
| 1893 | |
| 1894 | Copyright (c) 1990, 1993 |
| 1895 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1896 | (c) UNIX System Laboratories, Inc. |
| 1897 | All or some portions of this file are derived from material licensed |
| 1898 | to the University of California by American Telephone and Telegraph |
| 1899 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1900 | the permission of UNIX System Laboratories, Inc. |
| 1901 | |
| 1902 | Redistribution and use in source and binary forms, with or without |
| 1903 | modification, are permitted provided that the following conditions |
| 1904 | are met: |
| 1905 | 1. Redistributions of source code must retain the above copyright |
| 1906 | notice, this list of conditions and the following disclaimer. |
| 1907 | 2. Redistributions in binary form must reproduce the above copyright |
| 1908 | notice, this list of conditions and the following disclaimer in the |
| 1909 | documentation and/or other materials provided with the distribution. |
| 1910 | 3. Neither the name of the University nor the names of its contributors |
| 1911 | may be used to endorse or promote products derived from this software |
| 1912 | without specific prior written permission. |
| 1913 | |
| 1914 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1915 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1916 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1917 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1918 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1919 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1920 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1921 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1922 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1923 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1924 | SUCH DAMAGE. |
| 1925 | |
| 1926 | ------------------------------------------------------------------- |
| 1927 | |
| 1928 | Copyright (c) 1990, 1993, 1994 |
| 1929 | The Regents of the University of California. All rights reserved. |
| 1930 | |
| 1931 | Redistribution and use in source and binary forms, with or without |
| 1932 | modification, are permitted provided that the following conditions |
| 1933 | are met: |
| 1934 | 1. Redistributions of source code must retain the above copyright |
| 1935 | notice, this list of conditions and the following disclaimer. |
| 1936 | 2. Redistributions in binary form must reproduce the above copyright |
| 1937 | notice, this list of conditions and the following disclaimer in the |
| 1938 | documentation and/or other materials provided with the distribution. |
| 1939 | 3. Neither the name of the University nor the names of its contributors |
| 1940 | may be used to endorse or promote products derived from this software |
| 1941 | without specific prior written permission. |
| 1942 | |
| 1943 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1944 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1945 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1946 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1947 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1948 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1949 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1950 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1951 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1952 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1953 | SUCH DAMAGE. |
| 1954 | |
| 1955 | ------------------------------------------------------------------- |
| 1956 | |
| 1957 | Copyright (c) 1990, 1993, 1994 |
| 1958 | The Regents of the University of California. All rights reserved. |
| 1959 | |
| 1960 | This code is derived from software contributed to Berkeley by |
| 1961 | Chris Torek. |
| 1962 | |
| 1963 | Redistribution and use in source and binary forms, with or without |
| 1964 | modification, are permitted provided that the following conditions |
| 1965 | are met: |
| 1966 | 1. Redistributions of source code must retain the above copyright |
| 1967 | notice, this list of conditions and the following disclaimer. |
| 1968 | 2. Redistributions in binary form must reproduce the above copyright |
| 1969 | notice, this list of conditions and the following disclaimer in the |
| 1970 | documentation and/or other materials provided with the distribution. |
| 1971 | 3. Neither the name of the University nor the names of its contributors |
| 1972 | may be used to endorse or promote products derived from this software |
| 1973 | without specific prior written permission. |
| 1974 | |
| 1975 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1976 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1977 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1978 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1979 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1980 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1981 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1982 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1983 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1984 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1985 | SUCH DAMAGE. |
| 1986 | |
| 1987 | ------------------------------------------------------------------- |
| 1988 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 1989 | Copyright (c) 1991 The Regents of the University of California. |
| 1990 | All rights reserved. |
| 1991 | |
| 1992 | Redistribution and use in source and binary forms, with or without |
| 1993 | modification, are permitted provided that the following conditions |
| 1994 | are met: |
| 1995 | 1. Redistributions of source code must retain the above copyright |
| 1996 | notice, this list of conditions and the following disclaimer. |
| 1997 | 2. Redistributions in binary form must reproduce the above copyright |
| 1998 | notice, this list of conditions and the following disclaimer in the |
| 1999 | documentation and/or other materials provided with the distribution. |
| 2000 | 3. Neither the name of the University nor the names of its contributors |
| 2001 | may be used to endorse or promote products derived from this software |
| 2002 | without specific prior written permission. |
| 2003 | |
| 2004 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2005 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2006 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2007 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2008 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2009 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2010 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2011 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2012 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2013 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2014 | SUCH DAMAGE. |
| 2015 | |
| 2016 | ------------------------------------------------------------------- |
| 2017 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2018 | Copyright (c) 1991, 1993 |
| 2019 | The Regents of the University of California. All rights reserved. |
| 2020 | |
| 2021 | Redistribution and use in source and binary forms, with or without |
| 2022 | modification, are permitted provided that the following conditions |
| 2023 | are met: |
| 2024 | 1. Redistributions of source code must retain the above copyright |
| 2025 | notice, this list of conditions and the following disclaimer. |
| 2026 | 2. Redistributions in binary form must reproduce the above copyright |
| 2027 | notice, this list of conditions and the following disclaimer in the |
| 2028 | documentation and/or other materials provided with the distribution. |
| 2029 | 3. Neither the name of the University nor the names of its contributors |
| 2030 | may be used to endorse or promote products derived from this software |
| 2031 | without specific prior written permission. |
| 2032 | |
| 2033 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2034 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2035 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2036 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2037 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2038 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2039 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2040 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2041 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2042 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2043 | SUCH DAMAGE. |
| 2044 | |
| 2045 | ------------------------------------------------------------------- |
| 2046 | |
| 2047 | Copyright (c) 1991, 1993 |
| 2048 | The Regents of the University of California. All rights reserved. |
| 2049 | |
| 2050 | This code is derived from software contributed to Berkeley by |
| 2051 | Berkeley Software Design, Inc. |
| 2052 | |
| 2053 | Redistribution and use in source and binary forms, with or without |
| 2054 | modification, are permitted provided that the following conditions |
| 2055 | are met: |
| 2056 | 1. Redistributions of source code must retain the above copyright |
| 2057 | notice, this list of conditions and the following disclaimer. |
| 2058 | 2. Redistributions in binary form must reproduce the above copyright |
| 2059 | notice, this list of conditions and the following disclaimer in the |
| 2060 | documentation and/or other materials provided with the distribution. |
| 2061 | 3. Neither the name of the University nor the names of its contributors |
| 2062 | may be used to endorse or promote products derived from this software |
| 2063 | without specific prior written permission. |
| 2064 | |
| 2065 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2066 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2067 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2068 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2069 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2070 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2071 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2072 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2073 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2074 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2075 | SUCH DAMAGE. |
| 2076 | |
| 2077 | ------------------------------------------------------------------- |
| 2078 | |
| 2079 | Copyright (c) 1991, 1993 |
| 2080 | The Regents of the University of California. All rights reserved. |
| 2081 | (c) UNIX System Laboratories, Inc. |
| 2082 | All or some portions of this file are derived from material licensed |
| 2083 | to the University of California by American Telephone and Telegraph |
| 2084 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2085 | the permission of UNIX System Laboratories, Inc. |
| 2086 | |
| 2087 | This code is derived from software contributed to Berkeley by |
| 2088 | Hugh Smith at The University of Guelph. |
| 2089 | |
| 2090 | Redistribution and use in source and binary forms, with or without |
| 2091 | modification, are permitted provided that the following conditions |
| 2092 | are met: |
| 2093 | 1. Redistributions of source code must retain the above copyright |
| 2094 | notice, this list of conditions and the following disclaimer. |
| 2095 | 2. Redistributions in binary form must reproduce the above copyright |
| 2096 | notice, this list of conditions and the following disclaimer in the |
| 2097 | documentation and/or other materials provided with the distribution. |
| 2098 | 3. Neither the name of the University nor the names of its contributors |
| 2099 | may be used to endorse or promote products derived from this software |
| 2100 | without specific prior written permission. |
| 2101 | |
| 2102 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2103 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2104 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2105 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2106 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2107 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2108 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2109 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2110 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2111 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2112 | SUCH DAMAGE. |
| 2113 | |
| 2114 | ------------------------------------------------------------------- |
| 2115 | |
| 2116 | Copyright (c) 1991, 1993, 1995, |
| 2117 | The Regents of the University of California. All rights reserved. |
| 2118 | |
| 2119 | This code is derived from software contributed to Berkeley by |
| 2120 | Havard Eidnes. |
| 2121 | |
| 2122 | Redistribution and use in source and binary forms, with or without |
| 2123 | modification, are permitted provided that the following conditions |
| 2124 | are met: |
| 2125 | 1. Redistributions of source code must retain the above copyright |
| 2126 | notice, this list of conditions and the following disclaimer. |
| 2127 | 2. Redistributions in binary form must reproduce the above copyright |
| 2128 | notice, this list of conditions and the following disclaimer in the |
| 2129 | documentation and/or other materials provided with the distribution. |
| 2130 | 3. Neither the name of the University nor the names of its contributors |
| 2131 | may be used to endorse or promote products derived from this software |
| 2132 | without specific prior written permission. |
| 2133 | |
| 2134 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2135 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2136 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2137 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2138 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2139 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2140 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2141 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2142 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2143 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2144 | SUCH DAMAGE. |
| 2145 | |
| 2146 | ------------------------------------------------------------------- |
| 2147 | |
| 2148 | Copyright (c) 1992 Henry Spencer. |
| 2149 | Copyright (c) 1992, 1993 |
| 2150 | The Regents of the University of California. All rights reserved. |
| 2151 | |
| 2152 | This code is derived from software contributed to Berkeley by |
| 2153 | Henry Spencer of the University of Toronto. |
| 2154 | |
| 2155 | Redistribution and use in source and binary forms, with or without |
| 2156 | modification, are permitted provided that the following conditions |
| 2157 | are met: |
| 2158 | 1. Redistributions of source code must retain the above copyright |
| 2159 | notice, this list of conditions and the following disclaimer. |
| 2160 | 2. Redistributions in binary form must reproduce the above copyright |
| 2161 | notice, this list of conditions and the following disclaimer in the |
| 2162 | documentation and/or other materials provided with the distribution. |
| 2163 | 3. Neither the name of the University nor the names of its contributors |
| 2164 | may be used to endorse or promote products derived from this software |
| 2165 | without specific prior written permission. |
| 2166 | |
| 2167 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2168 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2169 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2170 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2171 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2172 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2173 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2174 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2175 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2176 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2177 | SUCH DAMAGE. |
| 2178 | |
| 2179 | ------------------------------------------------------------------- |
| 2180 | |
| 2181 | Copyright (c) 1992 The Regents of the University of California. |
| 2182 | All rights reserved. |
| 2183 | |
| 2184 | Redistribution and use in source and binary forms, with or without |
| 2185 | modification, are permitted provided that the following conditions |
| 2186 | are met: |
| 2187 | 1. Redistributions of source code must retain the above copyright |
| 2188 | notice, this list of conditions and the following disclaimer. |
| 2189 | 2. Redistributions in binary form must reproduce the above copyright |
| 2190 | notice, this list of conditions and the following disclaimer in the |
| 2191 | documentation and/or other materials provided with the distribution. |
| 2192 | 3. Neither the name of the University nor the names of its contributors |
| 2193 | may be used to endorse or promote products derived from this software |
| 2194 | without specific prior written permission. |
| 2195 | |
| 2196 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2197 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2198 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2199 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2200 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2201 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2202 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2203 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2204 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2205 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2206 | SUCH DAMAGE. |
| 2207 | |
| 2208 | ------------------------------------------------------------------- |
| 2209 | |
| 2210 | Copyright (c) 1992, 1993 |
| 2211 | The Regents of the University of California. All rights reserved. |
| 2212 | |
| 2213 | Redistribution and use in source and binary forms, with or without |
| 2214 | modification, are permitted provided that the following conditions |
| 2215 | are met: |
| 2216 | 1. Redistributions of source code must retain the above copyright |
| 2217 | notice, this list of conditions and the following disclaimer. |
| 2218 | 2. Redistributions in binary form must reproduce the above copyright |
| 2219 | notice, this list of conditions and the following disclaimer in the |
| 2220 | documentation and/or other materials provided with the distribution. |
| 2221 | 3. Neither the name of the University nor the names of its contributors |
| 2222 | may be used to endorse or promote products derived from this software |
| 2223 | without specific prior written permission. |
| 2224 | |
| 2225 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2226 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2227 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2228 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2229 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2230 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2231 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2232 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2233 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2234 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2235 | SUCH DAMAGE. |
| 2236 | |
| 2237 | ------------------------------------------------------------------- |
| 2238 | |
| 2239 | Copyright (c) 1992, 1993 |
| 2240 | The Regents of the University of California. All rights reserved. |
| 2241 | |
| 2242 | This code is derived from software contributed to Berkeley by |
| 2243 | Ralph Campbell. |
| 2244 | |
| 2245 | Redistribution and use in source and binary forms, with or without |
| 2246 | modification, are permitted provided that the following conditions |
| 2247 | are met: |
| 2248 | 1. Redistributions of source code must retain the above copyright |
| 2249 | notice, this list of conditions and the following disclaimer. |
| 2250 | 2. Redistributions in binary form must reproduce the above copyright |
| 2251 | notice, this list of conditions and the following disclaimer in the |
| 2252 | documentation and/or other materials provided with the distribution. |
| 2253 | 3. Neither the name of the University nor the names of its contributors |
| 2254 | may be used to endorse or promote products derived from this software |
| 2255 | without specific prior written permission. |
| 2256 | |
| 2257 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2258 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2259 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2260 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2261 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2262 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2263 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2264 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2265 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2266 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2267 | SUCH DAMAGE. |
| 2268 | |
| 2269 | ------------------------------------------------------------------- |
| 2270 | |
| 2271 | Copyright (c) 1992, 1993 |
| 2272 | The Regents of the University of California. All rights reserved. |
| 2273 | |
| 2274 | This code is derived from software contributed to Berkeley by |
| 2275 | Ralph Campbell. This file is derived from the MIPS RISC |
| 2276 | Architecture book by Gerry Kane. |
| 2277 | |
| 2278 | Redistribution and use in source and binary forms, with or without |
| 2279 | modification, are permitted provided that the following conditions |
| 2280 | are met: |
| 2281 | 1. Redistributions of source code must retain the above copyright |
| 2282 | notice, this list of conditions and the following disclaimer. |
| 2283 | 2. Redistributions in binary form must reproduce the above copyright |
| 2284 | notice, this list of conditions and the following disclaimer in the |
| 2285 | documentation and/or other materials provided with the distribution. |
| 2286 | 3. Neither the name of the University nor the names of its contributors |
| 2287 | may be used to endorse or promote products derived from this software |
| 2288 | without specific prior written permission. |
| 2289 | |
| 2290 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2291 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2292 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2293 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2294 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2295 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2296 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2297 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2298 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2299 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2300 | SUCH DAMAGE. |
| 2301 | |
| 2302 | ------------------------------------------------------------------- |
| 2303 | |
| 2304 | Copyright (c) 1992, 1993 |
| 2305 | The Regents of the University of California. All rights reserved. |
| 2306 | |
| 2307 | This software was developed by the Computer Systems Engineering group |
| 2308 | at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and |
| 2309 | contributed to Berkeley. |
| 2310 | |
| 2311 | All advertising materials mentioning features or use of this software |
| 2312 | must display the following acknowledgement: |
| 2313 | This product includes software developed by the University of |
| 2314 | California, Lawrence Berkeley Laboratory. |
| 2315 | |
| 2316 | Redistribution and use in source and binary forms, with or without |
| 2317 | modification, are permitted provided that the following conditions |
| 2318 | are met: |
| 2319 | 1. Redistributions of source code must retain the above copyright |
| 2320 | notice, this list of conditions and the following disclaimer. |
| 2321 | 2. Redistributions in binary form must reproduce the above copyright |
| 2322 | notice, this list of conditions and the following disclaimer in the |
| 2323 | documentation and/or other materials provided with the distribution. |
| 2324 | 3. All advertising materials mentioning features or use of this software |
| 2325 | must display the following acknowledgement: |
| 2326 | This product includes software developed by the University of |
| 2327 | California, Berkeley and its contributors. |
| 2328 | 4. Neither the name of the University nor the names of its contributors |
| 2329 | may be used to endorse or promote products derived from this software |
| 2330 | without specific prior written permission. |
| 2331 | |
| 2332 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2333 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2334 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2335 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2336 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2337 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2338 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2339 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2340 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2341 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2342 | SUCH DAMAGE. |
| 2343 | |
| 2344 | ------------------------------------------------------------------- |
| 2345 | |
| 2346 | Copyright (c) 1992, 1993 |
| 2347 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2348 | (c) UNIX System Laboratories, Inc. |
| 2349 | All or some portions of this file are derived from material licensed |
| 2350 | to the University of California by American Telephone and Telegraph |
| 2351 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2352 | the permission of UNIX System Laboratories, Inc. |
| 2353 | |
| 2354 | Redistribution and use in source and binary forms, with or without |
| 2355 | modification, are permitted provided that the following conditions |
| 2356 | are met: |
| 2357 | 1. Redistributions of source code must retain the above copyright |
| 2358 | notice, this list of conditions and the following disclaimer. |
| 2359 | 2. Redistributions in binary form must reproduce the above copyright |
| 2360 | notice, this list of conditions and the following disclaimer in the |
| 2361 | documentation and/or other materials provided with the distribution. |
| 2362 | 3. Neither the name of the University nor the names of its contributors |
| 2363 | may be used to endorse or promote products derived from this software |
| 2364 | without specific prior written permission. |
| 2365 | |
| 2366 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2367 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2368 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2369 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2370 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2371 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2372 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2373 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2374 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2375 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2376 | SUCH DAMAGE. |
| 2377 | |
| 2378 | ------------------------------------------------------------------- |
| 2379 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2380 | Copyright (c) 1992, 1993, 1994 |
| 2381 | The Regents of the University of California. All rights reserved. |
| 2382 | |
| 2383 | This code is derived from software contributed to Berkeley by |
| 2384 | Henry Spencer. |
| 2385 | |
| 2386 | Redistribution and use in source and binary forms, with or without |
| 2387 | modification, are permitted provided that the following conditions |
| 2388 | are met: |
| 2389 | 1. Redistributions of source code must retain the above copyright |
| 2390 | notice, this list of conditions and the following disclaimer. |
| 2391 | 2. Redistributions in binary form must reproduce the above copyright |
| 2392 | notice, this list of conditions and the following disclaimer in the |
| 2393 | documentation and/or other materials provided with the distribution. |
| 2394 | 3. Neither the name of the University nor the names of its contributors |
| 2395 | may be used to endorse or promote products derived from this software |
| 2396 | without specific prior written permission. |
| 2397 | |
| 2398 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2399 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2400 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2401 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2402 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2403 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2404 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2405 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2406 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2407 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2408 | SUCH DAMAGE. |
| 2409 | |
| 2410 | ------------------------------------------------------------------- |
| 2411 | |
Elliott Hughes | cc213f8 | 2012-08-14 15:32:42 -0700 | [diff] [blame] | 2412 | Copyright (c) 1992, 1993, 1994 Henry Spencer. |
| 2413 | |
| 2414 | This code is derived from software contributed to Berkeley by |
| 2415 | Henry Spencer. |
| 2416 | |
| 2417 | Redistribution and use in source and binary forms, with or without |
| 2418 | modification, are permitted provided that the following conditions |
| 2419 | are met: |
| 2420 | 1. Redistributions of source code must retain the above copyright |
| 2421 | notice, this list of conditions and the following disclaimer. |
| 2422 | 2. Redistributions in binary form must reproduce the above copyright |
| 2423 | notice, this list of conditions and the following disclaimer in the |
| 2424 | documentation and/or other materials provided with the distribution. |
| 2425 | 3. All advertising materials mentioning features or use of this software |
| 2426 | must display the following acknowledgement: |
| 2427 | This product includes software developed by the University of |
| 2428 | California, Berkeley and its contributors. |
| 2429 | 4. Neither the name of the University nor the names of its contributors |
| 2430 | may be used to endorse or promote products derived from this software |
| 2431 | without specific prior written permission. |
| 2432 | |
| 2433 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2434 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2435 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2436 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2437 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2438 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2439 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2440 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2441 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2442 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2443 | SUCH DAMAGE. |
| 2444 | |
| 2445 | ------------------------------------------------------------------- |
| 2446 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2447 | Copyright (c) 1993 |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2448 | The Regents of the University of California. All rights reserved. |
| 2449 | |
| 2450 | Redistribution and use in source and binary forms, with or without |
| 2451 | modification, are permitted provided that the following conditions |
| 2452 | are met: |
| 2453 | 1. Redistributions of source code must retain the above copyright |
| 2454 | notice, this list of conditions and the following disclaimer. |
| 2455 | 2. Redistributions in binary form must reproduce the above copyright |
| 2456 | notice, this list of conditions and the following disclaimer in the |
| 2457 | documentation and/or other materials provided with the distribution. |
| 2458 | 3. Neither the name of the University nor the names of its contributors |
| 2459 | may be used to endorse or promote products derived from this software |
| 2460 | without specific prior written permission. |
| 2461 | |
| 2462 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2463 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2464 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2465 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2466 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2467 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2468 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2469 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2470 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2471 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2472 | SUCH DAMAGE. |
| 2473 | |
| 2474 | ------------------------------------------------------------------- |
| 2475 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2476 | Copyright (c) 1993 Martin Birgmeier |
| 2477 | All rights reserved. |
| 2478 | |
| 2479 | You may redistribute unmodified or modified versions of this source |
| 2480 | code provided that the above copyright notice and this and the |
| 2481 | following conditions are retained. |
| 2482 | |
| 2483 | This software is provided ``as is'', and comes with no warranties |
| 2484 | of any kind. I shall in no event be liable for anything that happens |
| 2485 | to anyone/anything when using this software. |
| 2486 | |
| 2487 | ------------------------------------------------------------------- |
| 2488 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2489 | Copyright (c) 1994 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2490 | All rights reserved. |
| 2491 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2492 | Redistribution and use in source and binary forms, with or without |
| 2493 | modification, are permitted provided that the following conditions |
| 2494 | are met: |
| 2495 | 1. Redistributions of source code must retain the above copyright |
| 2496 | notice, this list of conditions and the following disclaimer. |
| 2497 | 2. Redistributions in binary form must reproduce the above copyright |
| 2498 | notice, this list of conditions and the following disclaimer in the |
| 2499 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2500 | 3. The name of the author may not be used to endorse or promote products |
| 2501 | derived from this software without specific prior written permission. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2502 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2503 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2504 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2505 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2506 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 2507 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 2508 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 2509 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 2510 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 2511 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 2512 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2513 | |
| 2514 | ------------------------------------------------------------------- |
| 2515 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2516 | Copyright (c) 1996 by Internet Software Consortium. |
| 2517 | |
| 2518 | Permission to use, copy, modify, and distribute this software for any |
| 2519 | purpose with or without fee is hereby granted, provided that the above |
| 2520 | copyright notice and this permission notice appear in all copies. |
| 2521 | |
| 2522 | THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS |
| 2523 | ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES |
| 2524 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE |
| 2525 | CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 2526 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 2527 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 2528 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 2529 | SOFTWARE. |
| 2530 | |
| 2531 | ------------------------------------------------------------------- |
| 2532 | |
| 2533 | Copyright (c) 1996, David Mazieres <dm@uun.org> |
| 2534 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 2535 | Copyright (c) 2013, Markus Friedl <markus@openbsd.org> |
| 2536 | |
| 2537 | Permission to use, copy, modify, and distribute this software for any |
| 2538 | purpose with or without fee is hereby granted, provided that the above |
| 2539 | copyright notice and this permission notice appear in all copies. |
| 2540 | |
| 2541 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2542 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2543 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2544 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2545 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2546 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2547 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2548 | |
| 2549 | ------------------------------------------------------------------- |
| 2550 | |
| 2551 | Copyright (c) 1996-1998, 2008 Theo de Raadt |
| 2552 | Copyright (c) 1997, 2008-2009 Todd C. Miller |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 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 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2568 | Copyright (c) 1997 Mark Brinicombe |
| 2569 | Copyright (c) 2010 Android Open Source Project. |
| 2570 | All rights reserved. |
| 2571 | |
| 2572 | Redistribution and use in source and binary forms, with or without |
| 2573 | modification, are permitted provided that the following conditions |
| 2574 | are met: |
| 2575 | 1. Redistributions of source code must retain the above copyright |
| 2576 | notice, this list of conditions and the following disclaimer. |
| 2577 | 2. Redistributions in binary form must reproduce the above copyright |
| 2578 | notice, this list of conditions and the following disclaimer in the |
| 2579 | documentation and/or other materials provided with the distribution. |
| 2580 | 3. All advertising materials mentioning features or use of this software |
| 2581 | must display the following acknowledgement: |
| 2582 | This product includes software developed by Mark Brinicombe |
| 2583 | 4. Neither the name of the University nor the names of its contributors |
| 2584 | may be used to endorse or promote products derived from this software |
| 2585 | without specific prior written permission. |
| 2586 | |
| 2587 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 2588 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2589 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2590 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 2591 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2592 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2593 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2594 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2595 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2596 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2597 | SUCH DAMAGE. |
| 2598 | |
| 2599 | ------------------------------------------------------------------- |
| 2600 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2601 | Copyright (c) 1997 Niklas Hallqvist. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2602 | |
| 2603 | Redistribution and use in source and binary forms, with or without |
| 2604 | modification, are permitted provided that the following conditions |
| 2605 | are met: |
| 2606 | 1. Redistributions of source code must retain the above copyright |
| 2607 | notice, this list of conditions and the following disclaimer. |
| 2608 | 2. Redistributions in binary form must reproduce the above copyright |
| 2609 | notice, this list of conditions and the following disclaimer in the |
| 2610 | documentation and/or other materials provided with the distribution. |
| 2611 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2612 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2613 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2614 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2615 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 2616 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 2617 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 2618 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 2619 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 2620 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 2621 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2622 | |
| 2623 | ------------------------------------------------------------------- |
| 2624 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2625 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2626 | |
| 2627 | Permission to use, copy, modify, and distribute this software for any |
| 2628 | purpose with or without fee is hereby granted, provided that the above |
| 2629 | copyright notice and this permission notice appear in all copies. |
| 2630 | |
| 2631 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2632 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2633 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2634 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2635 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2636 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2637 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2638 | |
| 2639 | ------------------------------------------------------------------- |
| 2640 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 2641 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2642 | All rights reserved. |
| 2643 | |
| 2644 | Redistribution and use in source and binary forms, with or without |
| 2645 | modification, are permitted provided that the following conditions |
| 2646 | are met: |
| 2647 | 1. Redistributions of source code must retain the above copyright |
| 2648 | notice, this list of conditions and the following disclaimer. |
| 2649 | 2. Redistributions in binary form must reproduce the above copyright |
| 2650 | notice, this list of conditions and the following disclaimer in the |
| 2651 | documentation and/or other materials provided with the distribution. |
| 2652 | 3. The name of the author may not be used to endorse or promote products |
| 2653 | derived from this software without specific prior written permission. |
| 2654 | |
| 2655 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 2656 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 2657 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 2658 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 2659 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 2660 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 2661 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 2662 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 2663 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 2664 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 2665 | |
| 2666 | ------------------------------------------------------------------- |
| 2667 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2668 | Copyright (c) 1997, 1998 The NetBSD Foundation, Inc. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2669 | All rights reserved. |
| 2670 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2671 | This code was contributed to The NetBSD Foundation by Klaus Klein. |
| 2672 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2673 | Redistribution and use in source and binary forms, with or without |
| 2674 | modification, are permitted provided that the following conditions |
| 2675 | are met: |
| 2676 | 1. Redistributions of source code must retain the above copyright |
| 2677 | notice, this list of conditions and the following disclaimer. |
| 2678 | 2. Redistributions in binary form must reproduce the above copyright |
| 2679 | notice, this list of conditions and the following disclaimer in the |
| 2680 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2681 | 3. All advertising materials mentioning features or use of this software |
| 2682 | must display the following acknowledgement: |
| 2683 | This product includes software developed by the NetBSD |
| 2684 | Foundation, Inc. and its contributors. |
| 2685 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 2686 | contributors may be used to endorse or promote products derived |
| 2687 | from this software without specific prior written permission. |
| 2688 | |
| 2689 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 2690 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 2691 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 2692 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 2693 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 2694 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 2695 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 2696 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 2697 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 2698 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 2699 | POSSIBILITY OF SUCH DAMAGE. |
| 2700 | |
| 2701 | ------------------------------------------------------------------- |
| 2702 | |
| 2703 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 2704 | All rights reserved. |
| 2705 | |
| 2706 | This code is derived from software contributed to The NetBSD Foundation |
| 2707 | by Luke Mewburn. |
| 2708 | |
| 2709 | Redistribution and use in source and binary forms, with or without |
| 2710 | modification, are permitted provided that the following conditions |
| 2711 | are met: |
| 2712 | 1. Redistributions of source code must retain the above copyright |
| 2713 | notice, this list of conditions and the following disclaimer. |
| 2714 | 2. Redistributions in binary form must reproduce the above copyright |
| 2715 | notice, this list of conditions and the following disclaimer in the |
| 2716 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2717 | |
| 2718 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 2719 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 2720 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 2721 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 2722 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 2723 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 2724 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 2725 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 2726 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 2727 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 2728 | POSSIBILITY OF SUCH DAMAGE. |
| 2729 | |
| 2730 | ------------------------------------------------------------------- |
| 2731 | |
| 2732 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 2733 | All rights reserved. |
| 2734 | |
| 2735 | This code is derived from software contributed to The NetBSD Foundation |
| 2736 | by Luke Mewburn; and by Jason R. Thorpe. |
| 2737 | |
| 2738 | Redistribution and use in source and binary forms, with or without |
| 2739 | modification, are permitted provided that the following conditions |
| 2740 | are met: |
| 2741 | 1. Redistributions of source code must retain the above copyright |
| 2742 | notice, this list of conditions and the following disclaimer. |
| 2743 | 2. Redistributions in binary form must reproduce the above copyright |
| 2744 | notice, this list of conditions and the following disclaimer in the |
| 2745 | documentation and/or other materials provided with the distribution. |
| 2746 | 3. All advertising materials mentioning features or use of this software |
| 2747 | must display the following acknowledgement: |
| 2748 | This product includes software developed by the NetBSD |
| 2749 | Foundation, Inc. and its contributors. |
| 2750 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 2751 | contributors may be used to endorse or promote products derived |
| 2752 | from this software without specific prior written permission. |
| 2753 | |
| 2754 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 2755 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 2756 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 2757 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 2758 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 2759 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 2760 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 2761 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 2762 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 2763 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 2764 | POSSIBILITY OF SUCH DAMAGE. |
| 2765 | |
| 2766 | ------------------------------------------------------------------- |
| 2767 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2768 | Copyright (c) 1997, 2005 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2769 | |
| 2770 | Permission to use, copy, modify, and distribute this software for any |
| 2771 | purpose with or without fee is hereby granted, provided that the above |
| 2772 | copyright notice and this permission notice appear in all copies. |
| 2773 | |
| 2774 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2775 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2776 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2777 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2778 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2779 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2780 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2781 | |
| 2782 | ------------------------------------------------------------------- |
| 2783 | |
| 2784 | Copyright (c) 1998 Softweyr LLC. All rights reserved. |
| 2785 | |
| 2786 | strtok_r, from Berkeley strtok |
| 2787 | Oct 13, 1998 by Wes Peters <wes@softweyr.com> |
| 2788 | |
| 2789 | Copyright (c) 1988, 1993 |
| 2790 | The Regents of the University of California. All rights reserved. |
| 2791 | |
| 2792 | Redistribution and use in source and binary forms, with or without |
| 2793 | modification, are permitted provided that the following conditions |
| 2794 | are met: |
| 2795 | 1. Redistributions of source code must retain the above copyright |
| 2796 | notices, this list of conditions and the following disclaimer. |
| 2797 | 2. Redistributions in binary form must reproduce the above copyright |
| 2798 | notices, this list of conditions and the following disclaimer in the |
| 2799 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 2800 | 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] | 2801 | may be used to endorse or promote products derived from this software |
| 2802 | without specific prior written permission. |
| 2803 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2804 | THIS SOFTWARE IS PROVIDED BY SOFTWEYR LLC, THE REGENTS AND CONTRIBUTORS |
| 2805 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 2806 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 2807 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTWEYR LLC, THE |
| 2808 | REGENTS, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 2809 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 2810 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 2811 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 2812 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 2813 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 2814 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 2815 | |
| 2816 | ------------------------------------------------------------------- |
| 2817 | |
| 2818 | Copyright (c) 1998 The NetBSD Foundation, Inc. |
| 2819 | All rights reserved. |
| 2820 | |
| 2821 | This code is derived from software contributed to The NetBSD Foundation |
| 2822 | by Klaus Klein. |
| 2823 | |
| 2824 | Redistribution and use in source and binary forms, with or without |
| 2825 | modification, are permitted provided that the following conditions |
| 2826 | are met: |
| 2827 | 1. Redistributions of source code must retain the above copyright |
| 2828 | notice, this list of conditions and the following disclaimer. |
| 2829 | 2. Redistributions in binary form must reproduce the above copyright |
| 2830 | notice, this list of conditions and the following disclaimer in the |
| 2831 | documentation and/or other materials provided with the distribution. |
| 2832 | 3. All advertising materials mentioning features or use of this software |
| 2833 | must display the following acknowledgement: |
| 2834 | This product includes software developed by the NetBSD |
| 2835 | Foundation, Inc. and its contributors. |
| 2836 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 2837 | contributors may be used to endorse or promote products derived |
| 2838 | from this software without specific prior written permission. |
| 2839 | |
| 2840 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 2841 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 2842 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 2843 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 2844 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 2845 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 2846 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 2847 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 2848 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 2849 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 2850 | POSSIBILITY OF SUCH DAMAGE. |
| 2851 | |
| 2852 | ------------------------------------------------------------------- |
| 2853 | |
| 2854 | Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2855 | All rights reserved. |
| 2856 | |
| 2857 | Redistribution and use in source and binary forms, with or without |
| 2858 | modification, are permitted provided that the following conditions |
| 2859 | are met: |
| 2860 | 1. Redistributions of source code must retain the above copyright |
| 2861 | notice, this list of conditions and the following disclaimer. |
| 2862 | 2. Redistributions in binary form must reproduce the above copyright |
| 2863 | notice, this list of conditions and the following disclaimer in the |
| 2864 | documentation and/or other materials provided with the distribution. |
| 2865 | 3. The name of the author may not be used to endorse or promote products |
| 2866 | derived from this software without specific prior written permission. |
| 2867 | |
| 2868 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 2869 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 2870 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 2871 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 2872 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 2873 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 2874 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 2875 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 2876 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 2877 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 2878 | |
| 2879 | ------------------------------------------------------------------- |
| 2880 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 2881 | Copyright (c) 1998, 2015 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2882 | |
| 2883 | Permission to use, copy, modify, and distribute this software for any |
| 2884 | purpose with or without fee is hereby granted, provided that the above |
| 2885 | copyright notice and this permission notice appear in all copies. |
| 2886 | |
| 2887 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2888 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2889 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2890 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2891 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2892 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2893 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2894 | |
| 2895 | ------------------------------------------------------------------- |
| 2896 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2897 | Copyright (c) 1999 |
| 2898 | David E. O'Brien |
| 2899 | Copyright (c) 1988, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2900 | The Regents of the University of California. All rights reserved. |
| 2901 | |
| 2902 | Redistribution and use in source and binary forms, with or without |
| 2903 | modification, are permitted provided that the following conditions |
| 2904 | are met: |
| 2905 | 1. Redistributions of source code must retain the above copyright |
| 2906 | notice, this list of conditions and the following disclaimer. |
| 2907 | 2. Redistributions in binary form must reproduce the above copyright |
| 2908 | notice, this list of conditions and the following disclaimer in the |
| 2909 | documentation and/or other materials provided with the distribution. |
| 2910 | 3. Neither the name of the University nor the names of its contributors |
| 2911 | may be used to endorse or promote products derived from this software |
| 2912 | without specific prior written permission. |
| 2913 | |
| 2914 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2915 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2916 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2917 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2918 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2919 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2920 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2921 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2922 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2923 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2924 | SUCH DAMAGE. |
| 2925 | |
| 2926 | ------------------------------------------------------------------- |
| 2927 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2928 | Copyright (c) 2000 Ben Harris. |
| 2929 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
| 2930 | All rights reserved. |
| 2931 | |
| 2932 | Redistribution and use in source and binary forms, with or without |
| 2933 | modification, are permitted provided that the following conditions |
| 2934 | are met: |
| 2935 | 1. Redistributions of source code must retain the above copyright |
| 2936 | notice, this list of conditions and the following disclaimer. |
| 2937 | 2. Redistributions in binary form must reproduce the above copyright |
| 2938 | notice, this list of conditions and the following disclaimer in the |
| 2939 | documentation and/or other materials provided with the distribution. |
| 2940 | 3. Neither the name of the project nor the names of its contributors |
| 2941 | may be used to endorse or promote products derived from this software |
| 2942 | without specific prior written permission. |
| 2943 | |
| 2944 | THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND |
| 2945 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2946 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2947 | ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE |
| 2948 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2949 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2950 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2951 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2952 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2953 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2954 | SUCH DAMAGE. |
| 2955 | |
| 2956 | ------------------------------------------------------------------- |
| 2957 | |
| 2958 | Copyright (c) 2000 The NetBSD Foundation, Inc. |
| 2959 | All rights reserved. |
| 2960 | |
| 2961 | This code is derived from software contributed to The NetBSD Foundation |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2962 | by Dieter Baron and Thomas Klausner. |
| 2963 | |
| 2964 | Redistribution and use in source and binary forms, with or without |
| 2965 | modification, are permitted provided that the following conditions |
| 2966 | are met: |
| 2967 | 1. Redistributions of source code must retain the above copyright |
| 2968 | notice, this list of conditions and the following disclaimer. |
| 2969 | 2. Redistributions in binary form must reproduce the above copyright |
| 2970 | notice, this list of conditions and the following disclaimer in the |
| 2971 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2972 | |
| 2973 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 2974 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 2975 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 2976 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 2977 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 2978 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 2979 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 2980 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 2981 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 2982 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 2983 | POSSIBILITY OF SUCH DAMAGE. |
| 2984 | |
| 2985 | ------------------------------------------------------------------- |
| 2986 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 2987 | Copyright (c) 2001 Wasabi Systems, Inc. |
| 2988 | All rights reserved. |
| 2989 | |
| 2990 | Written by Frank van der Linden for Wasabi Systems, Inc. |
| 2991 | |
| 2992 | Redistribution and use in source and binary forms, with or without |
| 2993 | modification, are permitted provided that the following conditions |
| 2994 | are met: |
| 2995 | 1. Redistributions of source code must retain the above copyright |
| 2996 | notice, this list of conditions and the following disclaimer. |
| 2997 | 2. Redistributions in binary form must reproduce the above copyright |
| 2998 | notice, this list of conditions and the following disclaimer in the |
| 2999 | documentation and/or other materials provided with the distribution. |
| 3000 | 3. All advertising materials mentioning features or use of this software |
| 3001 | must display the following acknowledgement: |
| 3002 | This product includes software developed for the NetBSD Project by |
| 3003 | Wasabi Systems, Inc. |
| 3004 | 4. The name of Wasabi Systems, Inc. may not be used to endorse |
| 3005 | or promote products derived from this software without specific prior |
| 3006 | written permission. |
| 3007 | |
| 3008 | THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND |
| 3009 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3010 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3011 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC |
| 3012 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3013 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3014 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3015 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3016 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3017 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3018 | POSSIBILITY OF SUCH DAMAGE. |
| 3019 | |
| 3020 | ------------------------------------------------------------------- |
| 3021 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3022 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3023 | |
| 3024 | Redistribution and use in source and binary forms, with or without |
| 3025 | modification, are permitted provided that the following conditions |
| 3026 | are met: |
| 3027 | 1. Redistributions of source code must retain the above copyright |
| 3028 | notice, this list of conditions and the following disclaimer. |
| 3029 | 2. Redistributions in binary form must reproduce the above copyright |
| 3030 | notice, this list of conditions and the following disclaimer in the |
| 3031 | documentation and/or other materials provided with the distribution. |
| 3032 | |
| 3033 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3034 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3035 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3036 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3037 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3038 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3039 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3040 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3041 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3042 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3043 | SUCH DAMAGE. |
| 3044 | |
| 3045 | ------------------------------------------------------------------- |
| 3046 | |
| 3047 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3048 | |
| 3049 | Redistribution and use in source and binary forms, with or without |
| 3050 | modification, are permitted provided that the following conditions |
| 3051 | are met: |
| 3052 | 1. Redistributions of source code must retain the above copyright |
| 3053 | notice, this list of conditions and the following disclaimer. |
| 3054 | 2. Redistributions in binary form must reproduce the above copyright |
| 3055 | notice, this list of conditions and the following disclaimer in the |
| 3056 | documentation and/or other materials provided with the distribution. |
| 3057 | 3. Neither the name of Opsycon AB nor the names of its contributors |
| 3058 | may be used to endorse or promote products derived from this software |
| 3059 | without specific prior written permission. |
| 3060 | |
| 3061 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3062 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3063 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3064 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3065 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3066 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3067 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3068 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3069 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3070 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3071 | SUCH DAMAGE. |
| 3072 | |
| 3073 | ------------------------------------------------------------------- |
| 3074 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 3075 | Copyright (c) 2001-2011 The FreeBSD Project. |
| 3076 | All rights reserved. |
| 3077 | |
| 3078 | Redistribution and use in source and binary forms, with or without |
| 3079 | modification, are permitted provided that the following conditions |
| 3080 | are met: |
| 3081 | 1. Redistributions of source code must retain the above copyright |
| 3082 | notice, this list of conditions and the following disclaimer. |
| 3083 | 2. Redistributions in binary form must reproduce the above copyright |
| 3084 | notice, this list of conditions and the following disclaimer in the |
| 3085 | documentation and/or other materials provided with the distribution. |
| 3086 | |
| 3087 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3088 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3089 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3090 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3091 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3092 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3093 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3094 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3095 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3096 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3097 | SUCH DAMAGE. |
| 3098 | |
| 3099 | ------------------------------------------------------------------- |
| 3100 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3101 | Copyright (c) 2002 Daniel Hartmeier |
| 3102 | All rights reserved. |
| 3103 | |
| 3104 | Redistribution and use in source and binary forms, with or without |
| 3105 | modification, are permitted provided that the following conditions |
| 3106 | are met: |
| 3107 | |
| 3108 | - Redistributions of source code must retain the above copyright |
| 3109 | notice, this list of conditions and the following disclaimer. |
| 3110 | - Redistributions in binary form must reproduce the above |
| 3111 | copyright notice, this list of conditions and the following |
| 3112 | disclaimer in the documentation and/or other materials provided |
| 3113 | with the distribution. |
| 3114 | |
| 3115 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 3116 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3117 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 3118 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 3119 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3120 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 3121 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 3122 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 3123 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3124 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
| 3125 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3126 | POSSIBILITY OF SUCH DAMAGE. |
| 3127 | |
| 3128 | ------------------------------------------------------------------- |
| 3129 | |
| 3130 | Copyright (c) 2002 Marc Espie. |
| 3131 | |
| 3132 | Redistribution and use in source and binary forms, with or without |
| 3133 | modification, are permitted provided that the following conditions |
| 3134 | are met: |
| 3135 | 1. Redistributions of source code must retain the above copyright |
| 3136 | notice, this list of conditions and the following disclaimer. |
| 3137 | 2. Redistributions in binary form must reproduce the above copyright |
| 3138 | notice, this list of conditions and the following disclaimer in the |
| 3139 | documentation and/or other materials provided with the distribution. |
| 3140 | |
| 3141 | THIS SOFTWARE IS PROVIDED BY THE OPENBSD PROJECT AND CONTRIBUTORS |
| 3142 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3143 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 3144 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OPENBSD |
| 3145 | PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 3146 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 3147 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 3148 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 3149 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 3150 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 3151 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3152 | |
| 3153 | ------------------------------------------------------------------- |
| 3154 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3155 | Copyright (c) 2002 The NetBSD Foundation, Inc. |
| 3156 | All rights reserved. |
| 3157 | |
| 3158 | This code is derived from software contributed to The NetBSD Foundation |
| 3159 | by Christos Zoulas. |
| 3160 | |
| 3161 | Redistribution and use in source and binary forms, with or without |
| 3162 | modification, are permitted provided that the following conditions |
| 3163 | are met: |
| 3164 | 1. Redistributions of source code must retain the above copyright |
| 3165 | notice, this list of conditions and the following disclaimer. |
| 3166 | 2. Redistributions in binary form must reproduce the above copyright |
| 3167 | notice, this list of conditions and the following disclaimer in the |
| 3168 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3169 | |
| 3170 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3171 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3172 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3173 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3174 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3175 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3176 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3177 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3178 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3179 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3180 | POSSIBILITY OF SUCH DAMAGE. |
| 3181 | |
| 3182 | ------------------------------------------------------------------- |
| 3183 | |
| 3184 | Copyright (c) 2002 Tim J. Robbins |
| 3185 | All rights reserved. |
| 3186 | |
| 3187 | Redistribution and use in source and binary forms, with or without |
| 3188 | modification, are permitted provided that the following conditions |
| 3189 | are met: |
| 3190 | 1. Redistributions of source code must retain the above copyright |
| 3191 | notice, this list of conditions and the following disclaimer. |
| 3192 | 2. Redistributions in binary form must reproduce the above copyright |
| 3193 | notice, this list of conditions and the following disclaimer in the |
| 3194 | documentation and/or other materials provided with the distribution. |
| 3195 | |
| 3196 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3197 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3198 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3199 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3200 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3201 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3202 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3203 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3204 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3205 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3206 | SUCH DAMAGE. |
| 3207 | |
| 3208 | ------------------------------------------------------------------- |
| 3209 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3210 | Copyright (c) 2002 Tim J. Robbins. |
| 3211 | All rights reserved. |
| 3212 | |
| 3213 | Redistribution and use in source and binary forms, with or without |
| 3214 | modification, are permitted provided that the following conditions |
| 3215 | are met: |
| 3216 | 1. Redistributions of source code must retain the above copyright |
| 3217 | notice, this list of conditions and the following disclaimer. |
| 3218 | 2. Redistributions in binary form must reproduce the above copyright |
| 3219 | notice, this list of conditions and the following disclaimer in the |
| 3220 | documentation and/or other materials provided with the distribution. |
| 3221 | |
| 3222 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3223 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3224 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3225 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3226 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3227 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3228 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3229 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3230 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3231 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3232 | SUCH DAMAGE. |
| 3233 | |
| 3234 | ------------------------------------------------------------------- |
| 3235 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3236 | Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3237 | |
| 3238 | Permission to use, copy, modify, and distribute this software for any |
| 3239 | purpose with or without fee is hereby granted, provided that the above |
| 3240 | copyright notice and this permission notice appear in all copies. |
| 3241 | |
| 3242 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3243 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3244 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3245 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3246 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3247 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3248 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3249 | |
| 3250 | Sponsored in part by the Defense Advanced Research Projects |
| 3251 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3252 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3253 | |
| 3254 | ------------------------------------------------------------------- |
| 3255 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3256 | Copyright (c) 2002, 2003 Tim J. Robbins. |
| 3257 | All rights reserved. |
| 3258 | |
| 3259 | Redistribution and use in source and binary forms, with or without |
| 3260 | modification, are permitted provided that the following conditions |
| 3261 | are met: |
| 3262 | 1. Redistributions of source code must retain the above copyright |
| 3263 | notice, this list of conditions and the following disclaimer. |
| 3264 | 2. Redistributions in binary form must reproduce the above copyright |
| 3265 | notice, this list of conditions and the following disclaimer in the |
| 3266 | documentation and/or other materials provided with the distribution. |
| 3267 | |
| 3268 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3269 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3270 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3271 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3272 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3273 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3274 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3275 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3276 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3277 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3278 | SUCH DAMAGE. |
| 3279 | |
| 3280 | ------------------------------------------------------------------- |
| 3281 | |
| 3282 | Copyright (c) 2002-2004 Tim J. Robbins |
| 3283 | All rights reserved. |
| 3284 | |
| 3285 | Redistribution and use in source and binary forms, with or without |
| 3286 | modification, are permitted provided that the following conditions |
| 3287 | are met: |
| 3288 | 1. Redistributions of source code must retain the above copyright |
| 3289 | notice, this list of conditions and the following disclaimer. |
| 3290 | 2. Redistributions in binary form must reproduce the above copyright |
| 3291 | notice, this list of conditions and the following disclaimer in the |
| 3292 | documentation and/or other materials provided with the distribution. |
| 3293 | |
| 3294 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3295 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3296 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3297 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3298 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3299 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3300 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3301 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3302 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3303 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3304 | SUCH DAMAGE. |
| 3305 | |
| 3306 | ------------------------------------------------------------------- |
| 3307 | |
| 3308 | Copyright (c) 2002-2004 Tim J. Robbins. |
| 3309 | All rights reserved. |
| 3310 | |
| 3311 | Redistribution and use in source and binary forms, with or without |
| 3312 | modification, are permitted provided that the following conditions |
| 3313 | are met: |
| 3314 | 1. Redistributions of source code must retain the above copyright |
| 3315 | notice, this list of conditions and the following disclaimer. |
| 3316 | 2. Redistributions in binary form must reproduce the above copyright |
| 3317 | notice, this list of conditions and the following disclaimer in the |
| 3318 | documentation and/or other materials provided with the distribution. |
| 3319 | |
| 3320 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3321 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3322 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3323 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3324 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3325 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3326 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3327 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3328 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3329 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3330 | SUCH DAMAGE. |
| 3331 | |
| 3332 | ------------------------------------------------------------------- |
| 3333 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3334 | Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> |
| 3335 | |
| 3336 | Redistribution and use in source and binary forms, with or without |
| 3337 | modification, are permitted provided that the following conditions |
| 3338 | are met: |
| 3339 | 1. Redistributions of source code must retain the above copyright |
| 3340 | notice, this list of conditions and the following disclaimer. |
| 3341 | 2. Redistributions in binary form must reproduce the above copyright |
| 3342 | notice, this list of conditions and the following disclaimer in the |
| 3343 | documentation and/or other materials provided with the distribution. |
| 3344 | 3. The names of the authors may not be used to endorse or promote |
| 3345 | products derived from this software without specific prior written |
| 3346 | permission. |
| 3347 | |
| 3348 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3349 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3350 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3351 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3352 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3353 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3354 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3355 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3356 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3357 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3358 | SUCH DAMAGE. |
| 3359 | |
| 3360 | ------------------------------------------------------------------- |
| 3361 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 3362 | Copyright (c) 2003 David Schultz <das@FreeBSD.ORG> |
| 3363 | All rights reserved. |
| 3364 | |
| 3365 | Redistribution and use in source and binary forms, with or without |
| 3366 | modification, are permitted provided that the following conditions |
| 3367 | are met: |
| 3368 | 1. Redistributions of source code must retain the above copyright |
| 3369 | notice, this list of conditions and the following disclaimer. |
| 3370 | 2. Redistributions in binary form must reproduce the above copyright |
| 3371 | notice, this list of conditions and the following disclaimer in the |
| 3372 | documentation and/or other materials provided with the distribution. |
| 3373 | |
| 3374 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3375 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3376 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3377 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3378 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3379 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3380 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3381 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3382 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3383 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3384 | SUCH DAMAGE. |
| 3385 | |
| 3386 | ------------------------------------------------------------------- |
| 3387 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3388 | Copyright (c) 2003 Networks Associates Technology, Inc. |
| 3389 | All rights reserved. |
| 3390 | |
| 3391 | Portions of this software were developed for the FreeBSD Project by |
| 3392 | Jacques A. Vidrine, Safeport Network Services, and Network |
| 3393 | Associates Laboratories, the Security Research Division of Network |
| 3394 | Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 |
| 3395 | ("CBOSS"), as part of the DARPA CHATS research program. |
| 3396 | |
| 3397 | Redistribution and use in source and binary forms, with or without |
| 3398 | modification, are permitted provided that the following conditions |
| 3399 | are met: |
| 3400 | 1. Redistributions of source code must retain the above copyright |
| 3401 | notice, this list of conditions and the following disclaimer. |
| 3402 | 2. Redistributions in binary form must reproduce the above copyright |
| 3403 | notice, this list of conditions and the following disclaimer in the |
| 3404 | documentation and/or other materials provided with the distribution. |
| 3405 | |
| 3406 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3407 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3408 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3409 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3410 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3411 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3412 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3413 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3414 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3415 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3416 | SUCH DAMAGE. |
| 3417 | |
| 3418 | ------------------------------------------------------------------- |
| 3419 | |
Nick Kralevich | 5e58ea0 | 2012-09-12 13:21:25 -0700 | [diff] [blame] | 3420 | Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3421 | |
| 3422 | Permission to use, copy, modify, and distribute this software for any |
| 3423 | purpose with or without fee is hereby granted, provided that the above |
| 3424 | copyright notice and this permission notice appear in all copies. |
| 3425 | |
| 3426 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3427 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3428 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3429 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3430 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3431 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3432 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3433 | |
| 3434 | Sponsored in part by the Defense Advanced Research Projects |
| 3435 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3436 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3437 | |
| 3438 | ------------------------------------------------------------------- |
| 3439 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 3440 | Copyright (c) 2003, 2004 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3441 | |
| 3442 | Permission to use, copy, modify, and distribute this software for any |
| 3443 | purpose with or without fee is hereby granted, provided that the above |
| 3444 | copyright notice and this permission notice appear in all copies. |
| 3445 | |
| 3446 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3447 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3448 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3449 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3450 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3451 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3452 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3453 | |
| 3454 | Sponsored in part by the Defense Advanced Research Projects |
| 3455 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3456 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3457 | |
| 3458 | ------------------------------------------------------------------- |
| 3459 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3460 | Copyright (c) 2004 The NetBSD Foundation, Inc. |
| 3461 | All rights reserved. |
| 3462 | |
| 3463 | This code is derived from software contributed to The NetBSD Foundation |
| 3464 | by Christos Zoulas. |
| 3465 | |
| 3466 | Redistribution and use in source and binary forms, with or without |
| 3467 | modification, are permitted provided that the following conditions |
| 3468 | are met: |
| 3469 | 1. Redistributions of source code must retain the above copyright |
| 3470 | notice, this list of conditions and the following disclaimer. |
| 3471 | 2. Redistributions in binary form must reproduce the above copyright |
| 3472 | notice, this list of conditions and the following disclaimer in the |
| 3473 | documentation and/or other materials provided with the distribution. |
| 3474 | 3. All advertising materials mentioning features or use of this software |
| 3475 | must display the following acknowledgement: |
| 3476 | This product includes software developed by the NetBSD |
| 3477 | Foundation, Inc. and its contributors. |
| 3478 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3479 | contributors may be used to endorse or promote products derived |
| 3480 | from this software without specific prior written permission. |
| 3481 | |
| 3482 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3483 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3484 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3485 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3486 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3487 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3488 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3489 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3490 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3491 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3492 | POSSIBILITY OF SUCH DAMAGE. |
| 3493 | |
| 3494 | ------------------------------------------------------------------- |
| 3495 | |
| 3496 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3497 | Copyright (c) 1995,1999 by Internet Software Consortium. |
| 3498 | |
| 3499 | Permission to use, copy, modify, and distribute this software for any |
| 3500 | purpose with or without fee is hereby granted, provided that the above |
| 3501 | copyright notice and this permission notice appear in all copies. |
| 3502 | |
| 3503 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3504 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3505 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3506 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3507 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3508 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3509 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 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) 1996,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) 1997,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") |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3616 | Copyright (c) 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") |
| 3633 | Portions Copyright (c) 1996-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 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 3649 | Copyright (c) 2004, 2005 David Schultz <das@FreeBSD.ORG> |
| 3650 | All rights reserved. |
| 3651 | |
| 3652 | Redistribution and use in source and binary forms, with or without |
| 3653 | modification, are permitted provided that the following conditions |
| 3654 | are met: |
| 3655 | 1. Redistributions of source code must retain the above copyright |
| 3656 | notice, this list of conditions and the following disclaimer. |
| 3657 | 2. Redistributions in binary form must reproduce the above copyright |
| 3658 | notice, this list of conditions and the following disclaimer in the |
| 3659 | documentation and/or other materials provided with the distribution. |
| 3660 | |
| 3661 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3662 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3663 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3664 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3665 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3666 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3667 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3668 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3669 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3670 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3671 | SUCH DAMAGE. |
| 3672 | |
| 3673 | ------------------------------------------------------------------- |
| 3674 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 3675 | Copyright (c) 2004-2005 David Schultz <das (at) FreeBSD.ORG> |
| 3676 | All rights reserved. |
| 3677 | |
| 3678 | Redistribution and use in source and binary forms, with or without |
| 3679 | modification, are permitted provided that the following conditions |
| 3680 | are met: |
| 3681 | 1. Redistributions of source code must retain the above copyright |
| 3682 | notice, this list of conditions and the following disclaimer. |
| 3683 | 2. Redistributions in binary form must reproduce the above copyright |
| 3684 | notice, this list of conditions and the following disclaimer in the |
| 3685 | documentation and/or other materials provided with the distribution. |
| 3686 | |
| 3687 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3688 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3689 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3690 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3691 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3692 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3693 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3694 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3695 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3696 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3697 | SUCH DAMAGE. |
| 3698 | |
| 3699 | ------------------------------------------------------------------- |
| 3700 | |
| 3701 | Copyright (c) 2004-2005 David Schultz <das@FreeBSD.ORG> |
| 3702 | All rights reserved. |
| 3703 | |
| 3704 | Redistribution and use in source and binary forms, with or without |
| 3705 | modification, are permitted provided that the following conditions |
| 3706 | are met: |
| 3707 | 1. Redistributions of source code must retain the above copyright |
| 3708 | notice, this list of conditions and the following disclaimer. |
| 3709 | 2. Redistributions in binary form must reproduce the above copyright |
| 3710 | notice, this list of conditions and the following disclaimer in the |
| 3711 | documentation and/or other materials provided with the distribution. |
| 3712 | |
| 3713 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3714 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3715 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3716 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3717 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3718 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3719 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3720 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3721 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3722 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3723 | SUCH DAMAGE. |
| 3724 | |
| 3725 | ------------------------------------------------------------------- |
| 3726 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3727 | Copyright (c) 2005 Tim J. Robbins. |
| 3728 | All rights reserved. |
| 3729 | |
| 3730 | Redistribution and use in source and binary forms, with or without |
| 3731 | modification, are permitted provided that the following conditions |
| 3732 | are met: |
| 3733 | 1. Redistributions of source code must retain the above copyright |
| 3734 | notice, this list of conditions and the following disclaimer. |
| 3735 | 2. Redistributions in binary form must reproduce the above copyright |
| 3736 | notice, this list of conditions and the following disclaimer in the |
| 3737 | documentation and/or other materials provided with the distribution. |
| 3738 | |
| 3739 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3740 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3741 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3742 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3743 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3744 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3745 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3746 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3747 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3748 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3749 | SUCH DAMAGE. |
| 3750 | |
| 3751 | ------------------------------------------------------------------- |
| 3752 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 3753 | Copyright (c) 2005 by Internet Systems Consortium, Inc. ("ISC") |
| 3754 | Copyright (c) 1995-1999 by Internet Software Consortium |
| 3755 | |
| 3756 | Permission to use, copy, modify, and distribute this software for any |
| 3757 | purpose with or without fee is hereby granted, provided that the above |
| 3758 | copyright notice and this permission notice appear in all copies. |
| 3759 | |
| 3760 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3761 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3762 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3763 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3764 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3765 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3766 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3767 | |
| 3768 | ------------------------------------------------------------------- |
| 3769 | |
Elliott Hughes | 7e54c76 | 2015-05-12 10:09:01 -0700 | [diff] [blame] | 3770 | Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3771 | |
| 3772 | Permission to use, copy, modify, and distribute this software for any |
| 3773 | purpose with or without fee is hereby granted, provided that the above |
| 3774 | copyright notice and this permission notice appear in all copies. |
| 3775 | |
| 3776 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3777 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3778 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3779 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3780 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3781 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3782 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3783 | |
| 3784 | ------------------------------------------------------------------- |
| 3785 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3786 | Copyright (c) 2007-2008 Michael G Schwern |
| 3787 | |
| 3788 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
| 3789 | |
| 3790 | The MIT License: |
| 3791 | |
| 3792 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 3793 | of this software and associated documentation files (the "Software"), to deal |
| 3794 | in the Software without restriction, including without limitation the rights |
| 3795 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 3796 | copies of the Software, and to permit persons to whom the Software is |
| 3797 | furnished to do so, subject to the following conditions: |
| 3798 | |
| 3799 | The above copyright notice and this permission notice shall be included in |
| 3800 | all copies or substantial portions of the Software. |
| 3801 | |
| 3802 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 3803 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 3804 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 3805 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 3806 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 3807 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 3808 | THE SOFTWARE. |
| 3809 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3810 | ------------------------------------------------------------------- |
| 3811 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3812 | Copyright (c) 2007-2008 Michael G Schwern |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3813 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3814 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3815 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3816 | The MIT License: |
| 3817 | |
| 3818 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 3819 | of this software and associated documentation files (the "Software"), to deal |
| 3820 | in the Software without restriction, including without limitation the rights |
| 3821 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 3822 | copies of the Software, and to permit persons to whom the Software is |
| 3823 | furnished to do so, subject to the following conditions: |
| 3824 | |
| 3825 | The above copyright notice and this permission notice shall be included in |
| 3826 | all copies or substantial portions of the Software. |
| 3827 | |
| 3828 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 3829 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 3830 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 3831 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 3832 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 3833 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 3834 | THE SOFTWARE. |
| 3835 | |
| 3836 | Origin: http://code.google.com/p/y2038 |
| 3837 | Modified for Bionic by the Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3838 | |
| 3839 | ------------------------------------------------------------------- |
| 3840 | |
| 3841 | Copyright (c) 2008 Android Open Source Project (query id randomization) |
| 3842 | Copyright (c) 1985, 1993 |
| 3843 | The Regents of the University of California. All rights reserved. |
| 3844 | |
| 3845 | Redistribution and use in source and binary forms, with or without |
| 3846 | modification, are permitted provided that the following conditions |
| 3847 | are met: |
| 3848 | 1. Redistributions of source code must retain the above copyright |
| 3849 | notice, this list of conditions and the following disclaimer. |
| 3850 | 2. Redistributions in binary form must reproduce the above copyright |
| 3851 | notice, this list of conditions and the following disclaimer in the |
| 3852 | documentation and/or other materials provided with the distribution. |
| 3853 | 3. All advertising materials mentioning features or use of this software |
| 3854 | must display the following acknowledgement: |
| 3855 | This product includes software developed by the University of |
| 3856 | California, Berkeley and its contributors. |
| 3857 | 4. Neither the name of the University nor the names of its contributors |
| 3858 | may be used to endorse or promote products derived from this software |
| 3859 | without specific prior written permission. |
| 3860 | |
| 3861 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 3862 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3863 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3864 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 3865 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3866 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3867 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3868 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3869 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3870 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3871 | SUCH DAMAGE. |
| 3872 | |
| 3873 | ------------------------------------------------------------------- |
Michael Hope | ea8fad1 | 2012-07-31 16:18:22 +1200 | [diff] [blame] | 3874 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 3875 | Copyright (c) 2008 Otto Moerbeek <otto@drijf.net> |
| 3876 | |
| 3877 | Permission to use, copy, modify, and distribute this software for any |
| 3878 | purpose with or without fee is hereby granted, provided that the above |
| 3879 | copyright notice and this permission notice appear in all copies. |
| 3880 | |
| 3881 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3882 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3883 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3884 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3885 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3886 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3887 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3888 | |
| 3889 | ------------------------------------------------------------------- |
| 3890 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3891 | Copyright (c) 2008 Todd C. Miller <millert@openbsd.org> |
| 3892 | |
| 3893 | Permission to use, copy, modify, and distribute this software for any |
| 3894 | purpose with or without fee is hereby granted, provided that the above |
| 3895 | copyright notice and this permission notice appear in all copies. |
| 3896 | |
| 3897 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3898 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3899 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3900 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3901 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3902 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3903 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3904 | |
| 3905 | ------------------------------------------------------------------- |
| 3906 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 3907 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
| 3908 | |
| 3909 | Permission to use, copy, modify, and distribute this software for any |
| 3910 | purpose with or without fee is hereby granted, provided that the above |
| 3911 | copyright notice and this permission notice appear in all copies. |
| 3912 | |
| 3913 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3914 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3915 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3916 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3917 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3918 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3919 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3920 | |
| 3921 | ------------------------------------------------------------------- |
| 3922 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3923 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 3924 | All rights reserved. |
| 3925 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 3926 | Copyright (c) 2011 The FreeBSD Foundation |
| 3927 | All rights reserved. |
| 3928 | Portions of this software were developed by David Chisnall |
| 3929 | under sponsorship from the FreeBSD Foundation. |
| 3930 | |
| 3931 | Redistribution and use in source and binary forms, with or without |
| 3932 | modification, are permitted provided that the following conditions |
| 3933 | are met: |
| 3934 | 1. Redistributions of source code must retain the above copyright |
| 3935 | notice, this list of conditions and the following disclaimer. |
| 3936 | 2. Redistributions in binary form must reproduce the above copyright |
| 3937 | notice, this list of conditions and the following disclaimer in the |
| 3938 | documentation and/or other materials provided with the distribution. |
| 3939 | |
| 3940 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3941 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3942 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3943 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3944 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3945 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3946 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3947 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3948 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3949 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3950 | SUCH DAMAGE. |
| 3951 | |
| 3952 | ------------------------------------------------------------------- |
| 3953 | |
| 3954 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 3955 | All rights reserved. |
| 3956 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3957 | Redistribution and use in source and binary forms, with or without |
| 3958 | modification, are permitted provided that the following conditions |
| 3959 | are met: |
| 3960 | 1. Redistributions of source code must retain the above copyright |
| 3961 | notice, this list of conditions and the following disclaimer. |
| 3962 | 2. Redistributions in binary form must reproduce the above copyright |
| 3963 | notice, this list of conditions and the following disclaimer in the |
| 3964 | documentation and/or other materials provided with the distribution. |
| 3965 | |
| 3966 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3967 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3968 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3969 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3970 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3971 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3972 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3973 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3974 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3975 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3976 | SUCH DAMAGE. |
| 3977 | |
| 3978 | ------------------------------------------------------------------- |
| 3979 | |
Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 3980 | Copyright (c) 2009 The NetBSD Foundation, Inc. |
| 3981 | |
| 3982 | This code is derived from software contributed to The NetBSD Foundation |
| 3983 | by Roy Marples. |
| 3984 | |
| 3985 | Redistribution and use in source and binary forms, with or without |
| 3986 | modification, are permitted provided that the following conditions |
| 3987 | are met: |
| 3988 | 1. Redistributions of source code must retain the above copyright |
| 3989 | notice, this list of conditions and the following disclaimer. |
| 3990 | 2. Redistributions in binary form must reproduce the above copyright |
| 3991 | notice, this list of conditions and the following disclaimer in the |
| 3992 | documentation and/or other materials provided with the distribution. |
| 3993 | |
| 3994 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 3995 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 3996 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 3997 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3998 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 3999 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4000 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4001 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4002 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4003 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4004 | |
| 4005 | ------------------------------------------------------------------- |
| 4006 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4007 | Copyright (c) 2010 MIPS Technologies, Inc. |
| 4008 | |
| 4009 | All rights reserved. |
| 4010 | |
| 4011 | Redistribution and use in source and binary forms, with or without |
| 4012 | modification, are permitted provided that the following conditions |
| 4013 | are met: |
| 4014 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4015 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4016 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4017 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4018 | notice, this list of conditions and the following disclaimer |
| 4019 | in the documentation and/or other materials provided with |
| 4020 | the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4021 | * Neither the name of MIPS Technologies Inc. nor the names of its |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4022 | contributors may be used to endorse or promote products derived |
| 4023 | from this software without specific prior written permission. |
| 4024 | |
| 4025 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4026 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4027 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4028 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4029 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4030 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4031 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4032 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4033 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4034 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4035 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4036 | |
| 4037 | ------------------------------------------------------------------- |
| 4038 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 4039 | Copyright (c) 2010 The NetBSD Foundation, Inc. |
| 4040 | All rights reserved. |
| 4041 | |
| 4042 | Redistribution and use in source and binary forms, with or without |
| 4043 | modification, are permitted provided that the following conditions |
| 4044 | are met: |
| 4045 | 1. Redistributions of source code must retain the above copyright |
| 4046 | notice, this list of conditions and the following disclaimer. |
| 4047 | 2. Redistributions in binary form must reproduce the above copyright |
| 4048 | notice, this list of conditions and the following disclaimer in the |
| 4049 | documentation and/or other materials provided with the distribution. |
| 4050 | |
| 4051 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 4052 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 4053 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 4054 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 4055 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 4056 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 4057 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 4058 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 4059 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 4060 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 4061 | POSSIBILITY OF SUCH DAMAGE. |
| 4062 | |
| 4063 | ------------------------------------------------------------------- |
| 4064 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4065 | Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> |
| 4066 | |
| 4067 | Permission to use, copy, modify, and distribute this software for any |
| 4068 | purpose with or without fee is hereby granted, provided that the above |
| 4069 | copyright notice and this permission notice appear in all copies. |
| 4070 | |
| 4071 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4072 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4073 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4074 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4075 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4076 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4077 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4078 | |
| 4079 | ------------------------------------------------------------------- |
| 4080 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4081 | Copyright (c) 2010, 2011, 2012, 2013 Intel Corporation |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4082 | All rights reserved. |
| 4083 | |
| 4084 | Redistribution and use in source and binary forms, with or without |
| 4085 | modification, are permitted provided that the following conditions are met: |
| 4086 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4087 | * Redistributions of source code must retain the above copyright notice, |
| 4088 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4089 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4090 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4091 | * this list of conditions and the following disclaimer in the documentation |
| 4092 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4093 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4094 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4095 | * may be used to endorse or promote products derived from this software |
| 4096 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4097 | |
| 4098 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4099 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4100 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4101 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4102 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4103 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4104 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4105 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4106 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4107 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4108 | |
| 4109 | ------------------------------------------------------------------- |
| 4110 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4111 | Copyright (c) 2010, Intel Corporation |
| 4112 | All rights reserved. |
| 4113 | |
| 4114 | Redistribution and use in source and binary forms, with or without |
| 4115 | modification, are permitted provided that the following conditions are met: |
| 4116 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4117 | * Redistributions of source code must retain the above copyright notice, |
| 4118 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4119 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4120 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4121 | * this list of conditions and the following disclaimer in the documentation |
| 4122 | * and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4123 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4124 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4125 | * may be used to endorse or promote products derived from this software |
| 4126 | * without specific prior written permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4127 | |
| 4128 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4129 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4130 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4131 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4132 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4133 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4134 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4135 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4136 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4137 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4138 | |
| 4139 | ------------------------------------------------------------------- |
| 4140 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 4141 | Copyright (c) 2011 David Chisnall |
| 4142 | All rights reserved. |
| 4143 | |
| 4144 | Redistribution and use in source and binary forms, with or without |
| 4145 | modification, are permitted provided that the following conditions |
| 4146 | are met: |
| 4147 | 1. Redistributions of source code must retain the above copyright |
| 4148 | notice, this list of conditions and the following disclaimer. |
| 4149 | 2. Redistributions in binary form must reproduce the above copyright |
| 4150 | notice, this list of conditions and the following disclaimer in the |
| 4151 | documentation and/or other materials provided with the distribution. |
| 4152 | |
| 4153 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4154 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4155 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4156 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4157 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4158 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4159 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4160 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4161 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4162 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4163 | SUCH DAMAGE. |
| 4164 | |
| 4165 | ------------------------------------------------------------------- |
| 4166 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4167 | Copyright (c) 2011 Ed Schouten <ed@FreeBSD.org> |
| 4168 | David Chisnall <theraven@FreeBSD.org> |
| 4169 | All rights reserved. |
| 4170 | |
| 4171 | Redistribution and use in source and binary forms, with or without |
| 4172 | modification, are permitted provided that the following conditions |
| 4173 | are met: |
| 4174 | 1. Redistributions of source code must retain the above copyright |
| 4175 | notice, this list of conditions and the following disclaimer. |
| 4176 | 2. Redistributions in binary form must reproduce the above copyright |
| 4177 | notice, this list of conditions and the following disclaimer in the |
| 4178 | documentation and/or other materials provided with the distribution. |
| 4179 | |
| 4180 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4181 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4182 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4183 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4184 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4185 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4186 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4187 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4188 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4189 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4190 | SUCH DAMAGE. |
| 4191 | |
| 4192 | ------------------------------------------------------------------- |
| 4193 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4194 | Copyright (c) 2011 Intel Corporation |
| 4195 | All rights reserved. |
| 4196 | |
| 4197 | Redistribution and use in source and binary forms, with or without |
| 4198 | modification, are permitted provided that the following conditions are met: |
| 4199 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4200 | * Redistributions of source code must retain the above copyright notice, |
| 4201 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4202 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4203 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4204 | * this list of conditions and the following disclaimer in the documentation |
| 4205 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4206 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4207 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4208 | * may be used to endorse or promote products derived from this software |
| 4209 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4210 | |
| 4211 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4212 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4213 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4214 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4215 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4216 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4217 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4218 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4219 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4220 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4221 | |
| 4222 | ------------------------------------------------------------------- |
| 4223 | |
Elliott Hughes | 5c2264a | 2014-09-13 09:42:41 -0700 | [diff] [blame] | 4224 | Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org> |
| 4225 | |
| 4226 | Permission to use, copy, modify, and distribute this software for any |
| 4227 | purpose with or without fee is hereby granted, provided that the above |
| 4228 | copyright notice and this permission notice appear in all copies. |
| 4229 | |
| 4230 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4231 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4232 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4233 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4234 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4235 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4236 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4237 | |
| 4238 | ------------------------------------------------------------------- |
| 4239 | |
| 4240 | Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org> |
| 4241 | Copyright (c) 2009 Ted Unangst |
| 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 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4257 | Copyright (c) 2011 The Android Open Source Project |
| 4258 | Copyright (c) 2008 ARM Ltd |
| 4259 | All rights reserved. |
| 4260 | |
| 4261 | Redistribution and use in source and binary forms, with or without |
| 4262 | modification, are permitted provided that the following conditions |
| 4263 | are met: |
| 4264 | 1. Redistributions of source code must retain the above copyright |
| 4265 | notice, this list of conditions and the following disclaimer. |
| 4266 | 2. Redistributions in binary form must reproduce the above copyright |
| 4267 | notice, this list of conditions and the following disclaimer in the |
| 4268 | documentation and/or other materials provided with the distribution. |
| 4269 | 3. The name of the company may not be used to endorse or promote |
| 4270 | products derived from this software without specific prior written |
| 4271 | permission. |
| 4272 | |
| 4273 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 4274 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 4275 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4276 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4277 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 4278 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 4279 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 4280 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 4281 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4282 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4283 | |
| 4284 | ------------------------------------------------------------------- |
| 4285 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4286 | Copyright (c) 2011, 2012, 2013 Intel Corporation |
| 4287 | All rights reserved. |
| 4288 | |
| 4289 | Redistribution and use in source and binary forms, with or without |
| 4290 | modification, are permitted provided that the following conditions are met: |
| 4291 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4292 | * Redistributions of source code must retain the above copyright notice, |
| 4293 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4294 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4295 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4296 | * this list of conditions and the following disclaimer in the documentation |
| 4297 | * and/or other materials provided with the distribution. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4298 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4299 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4300 | * may be used to endorse or promote products derived from this software |
| 4301 | * without specific prior written permission. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4302 | |
| 4303 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4304 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4305 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4306 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4307 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4308 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4309 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4310 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4311 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4312 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4313 | |
| 4314 | ------------------------------------------------------------------- |
| 4315 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4316 | Copyright (c) 2011, Intel Corporation |
| 4317 | All rights reserved. |
| 4318 | |
| 4319 | Redistribution and use in source and binary forms, with or without |
| 4320 | modification, are permitted provided that the following conditions are met: |
| 4321 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4322 | * Redistributions of source code must retain the above copyright notice, |
| 4323 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4324 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4325 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4326 | * this list of conditions and the following disclaimer in the documentation |
| 4327 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4328 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4329 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4330 | * may be used to endorse or promote products derived from this software |
| 4331 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4332 | |
| 4333 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4334 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4335 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4336 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4337 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4338 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4339 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4340 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4341 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4342 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4343 | |
| 4344 | ------------------------------------------------------------------- |
| 4345 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4346 | Copyright (c) 2011, VMware, Inc. |
| 4347 | All rights reserved. |
| 4348 | |
| 4349 | Redistribution and use in source and binary forms, with or without |
| 4350 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4351 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4352 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4353 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4354 | notice, this list of conditions and the following disclaimer in the |
| 4355 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4356 | * 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] | 4357 | may be used to endorse or promote products derived from this software |
| 4358 | without specific prior written permission. |
| 4359 | |
| 4360 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 4361 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4362 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4363 | ARE DISCLAIMED. IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR |
| 4364 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4365 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4366 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 4367 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4368 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4369 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4370 | |
| 4371 | ------------------------------------------------------------------- |
| 4372 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4373 | Copyright (c) 2012, Linaro Limited |
| 4374 | All rights reserved. |
| 4375 | |
| 4376 | Redistribution and use in source and binary forms, with or without |
| 4377 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4378 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4379 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4380 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4381 | notice, this list of conditions and the following disclaimer in the |
| 4382 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4383 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4384 | names of its contributors may be used to endorse or promote products |
| 4385 | derived from this software without specific prior written permission. |
| 4386 | |
| 4387 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4388 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4389 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4390 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4391 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4392 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4393 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4394 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4395 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4396 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4397 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4398 | |
| 4399 | ------------------------------------------------------------------- |
| 4400 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4401 | Copyright (c) 2012, Linaro Limited |
| 4402 | All rights reserved. |
| 4403 | Copyright (c) 2014, NVIDIA Corporation. All rights reserved. |
| 4404 | |
| 4405 | Redistribution and use in source and binary forms, with or without |
| 4406 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4407 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4408 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4409 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4410 | notice, this list of conditions and the following disclaimer in the |
| 4411 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4412 | * Neither the name of the Linaro nor the |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4413 | names of its contributors may be used to endorse or promote products |
| 4414 | derived from this software without specific prior written permission. |
| 4415 | |
| 4416 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4417 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4418 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4419 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4420 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4421 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4422 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4423 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4424 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4425 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4426 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4427 | |
| 4428 | ------------------------------------------------------------------- |
| 4429 | |
Elliott Hughes | 44ead71 | 2015-08-28 20:23:52 -0700 | [diff] [blame] | 4430 | Copyright (c) 2012-2015 |
| 4431 | MIPS Technologies, Inc., California. |
| 4432 | |
| 4433 | Redistribution and use in source and binary forms, with or without |
| 4434 | modification, are permitted provided that the following conditions |
| 4435 | are met: |
| 4436 | 1. Redistributions of source code must retain the above copyright |
| 4437 | notice, this list of conditions and the following disclaimer. |
| 4438 | 2. Redistributions in binary form must reproduce the above copyright |
| 4439 | notice, this list of conditions and the following disclaimer in the |
| 4440 | documentation and/or other materials provided with the distribution. |
| 4441 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 4442 | contributors may be used to endorse or promote products derived from |
| 4443 | this software without specific prior written permission. |
| 4444 | |
| 4445 | THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND |
| 4446 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4447 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4448 | ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE |
| 4449 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4450 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4451 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4452 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4453 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4454 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4455 | SUCH DAMAGE. |
| 4456 | |
| 4457 | ------------------------------------------------------------------- |
| 4458 | |
| 4459 | Copyright (c) 2013 |
| 4460 | MIPS Technologies, Inc., California. |
| 4461 | |
| 4462 | Redistribution and use in source and binary forms, with or without |
| 4463 | modification, are permitted provided that the following conditions |
| 4464 | are met: |
| 4465 | 1. Redistributions of source code must retain the above copyright |
| 4466 | notice, this list of conditions and the following disclaimer. |
| 4467 | 2. Redistributions in binary form must reproduce the above copyright |
| 4468 | notice, this list of conditions and the following disclaimer in the |
| 4469 | documentation and/or other materials provided with the distribution. |
| 4470 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 4471 | contributors may be used to endorse or promote products derived from |
| 4472 | this software without specific prior written permission. |
| 4473 | |
| 4474 | THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND |
| 4475 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4476 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4477 | ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE |
| 4478 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4479 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4480 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4481 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4482 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4483 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4484 | SUCH DAMAGE. |
| 4485 | |
| 4486 | ------------------------------------------------------------------- |
| 4487 | |
Elliott Hughes | 0493a6f | 2013-03-07 11:48:58 -0800 | [diff] [blame] | 4488 | Copyright (c) 2013 ARM Ltd |
| 4489 | All rights reserved. |
| 4490 | |
| 4491 | Redistribution and use in source and binary forms, with or without |
| 4492 | modification, are permitted provided that the following conditions |
| 4493 | are met: |
| 4494 | 1. Redistributions of source code must retain the above copyright |
| 4495 | notice, this list of conditions and the following disclaimer. |
| 4496 | 2. Redistributions in binary form must reproduce the above copyright |
| 4497 | notice, this list of conditions and the following disclaimer in the |
| 4498 | documentation and/or other materials provided with the distribution. |
| 4499 | 3. The name of the company may not be used to endorse or promote |
| 4500 | products derived from this software without specific prior written |
| 4501 | permission. |
| 4502 | |
| 4503 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 4504 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 4505 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4506 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4507 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 4508 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 4509 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 4510 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 4511 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4512 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4513 | |
| 4514 | ------------------------------------------------------------------- |
| 4515 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4516 | Copyright (c) 2013 Antoine Jacoutot <ajacoutot@openbsd.org> |
| 4517 | |
| 4518 | Permission to use, copy, modify, and distribute this software for any |
| 4519 | purpose with or without fee is hereby granted, provided that the above |
| 4520 | copyright notice and this permission notice appear in all copies. |
| 4521 | |
| 4522 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4523 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4524 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4525 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4526 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4527 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4528 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4529 | |
| 4530 | ------------------------------------------------------------------- |
| 4531 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 4532 | Copyright (c) 2013 The NetBSD Foundation, Inc. |
| 4533 | All rights reserved. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 4534 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 4535 | This code is derived from software contributed to The NetBSD Foundation |
| 4536 | by Christos Zoulas. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 4537 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 4538 | Redistribution and use in source and binary forms, with or without |
| 4539 | modification, are permitted provided that the following conditions |
| 4540 | are met: |
| 4541 | 1. Redistributions of source code must retain the above copyright |
| 4542 | notice, this list of conditions and the following disclaimer. |
| 4543 | 2. Redistributions in binary form must reproduce the above copyright |
| 4544 | notice, this list of conditions and the following disclaimer in the |
| 4545 | documentation and/or other materials provided with the distribution. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 4546 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 4547 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 4548 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 4549 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 4550 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 4551 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 4552 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 4553 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 4554 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 4555 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 4556 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 4557 | POSSIBILITY OF SUCH DAMAGE. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 4558 | |
| 4559 | ------------------------------------------------------------------- |
| 4560 | |
Elliott Hughes | 44ead71 | 2015-08-28 20:23:52 -0700 | [diff] [blame] | 4561 | Copyright (c) 2014 |
| 4562 | Imagination Technologies Limited. |
| 4563 | |
| 4564 | Redistribution and use in source and binary forms, with or without |
| 4565 | modification, are permitted provided that the following conditions |
| 4566 | are met: |
| 4567 | 1. Redistributions of source code must retain the above copyright |
| 4568 | notice, this list of conditions and the following disclaimer. |
| 4569 | 2. Redistributions in binary form must reproduce the above copyright |
| 4570 | notice, this list of conditions and the following disclaimer in the |
| 4571 | documentation and/or other materials provided with the distribution. |
| 4572 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 4573 | contributors may be used to endorse or promote products derived from |
| 4574 | this software without specific prior written permission. |
| 4575 | |
| 4576 | THIS SOFTWARE IS PROVIDED BY IMAGINATION TECHNOLOGIES LIMITED ``AS IS'' AND |
| 4577 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4578 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4579 | ARE DISCLAIMED. IN NO EVENT SHALL IMAGINATION TECHNOLOGIES LIMITED BE LIABLE |
| 4580 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4581 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4582 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4583 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4584 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4585 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4586 | SUCH DAMAGE. |
| 4587 | |
| 4588 | ------------------------------------------------------------------- |
| 4589 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4590 | Copyright (c) 2014 Theo de Raadt <deraadt@openbsd.org> |
| 4591 | Copyright (c) 2014 Bob Beck <beck@obtuse.com> |
| 4592 | |
| 4593 | Permission to use, copy, modify, and distribute this software for any |
| 4594 | purpose with or without fee is hereby granted, provided that the above |
| 4595 | copyright notice and this permission notice appear in all copies. |
| 4596 | |
| 4597 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4598 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4599 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4600 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4601 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4602 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4603 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4604 | |
| 4605 | Emulation of getentropy(2) as documented at: |
| 4606 | http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man2/getentropy.2 |
| 4607 | |
| 4608 | ------------------------------------------------------------------- |
| 4609 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4610 | Copyright (c) 2014, Intel Corporation |
| 4611 | All rights reserved. |
| 4612 | |
| 4613 | Redistribution and use in source and binary forms, with or without |
| 4614 | modification, are permitted provided that the following conditions are met: |
| 4615 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4616 | * Redistributions of source code must retain the above copyright notice, |
| 4617 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4618 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4619 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4620 | * this list of conditions and the following disclaimer in the documentation |
| 4621 | * and/or other materials provided with the distribution. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4622 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4623 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4624 | * may be used to endorse or promote products derived from this software |
| 4625 | * without specific prior written permission. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4626 | |
| 4627 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4628 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4629 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4630 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4631 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4632 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4633 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4634 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4635 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4636 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4637 | |
| 4638 | ------------------------------------------------------------------- |
| 4639 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4640 | Copyright (c) 2014, Linaro Limited |
| 4641 | All rights reserved. |
| 4642 | |
| 4643 | Redistribution and use in source and binary forms, with or without |
| 4644 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4645 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4646 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4647 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4648 | notice, this list of conditions and the following disclaimer in the |
| 4649 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4650 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4651 | names of its contributors may be used to endorse or promote products |
| 4652 | derived from this software without specific prior written permission. |
| 4653 | |
| 4654 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4655 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4656 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4657 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4658 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4659 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4660 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4661 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4662 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4663 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4664 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4665 | |
| 4666 | ------------------------------------------------------------------- |
| 4667 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 4668 | Copyright (c) 2015 Joerg Sonnenberger <joerg@NetBSD.org>. |
| 4669 | All rights reserved. |
| 4670 | |
| 4671 | Redistribution and use in source and binary forms, with or without |
| 4672 | modification, are permitted provided that the following conditions |
| 4673 | are met: |
| 4674 | |
| 4675 | 1. Redistributions of source code must retain the above copyright |
| 4676 | notice, this list of conditions and the following disclaimer. |
| 4677 | 2. Redistributions in binary form must reproduce the above copyright |
| 4678 | notice, this list of conditions and the following disclaimer in |
| 4679 | the documentation and/or other materials provided with the |
| 4680 | distribution. |
| 4681 | |
| 4682 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4683 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4684 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 4685 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 4686 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4687 | INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 4688 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4689 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 4690 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 4691 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 4692 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4693 | SUCH DAMAGE. |
| 4694 | |
| 4695 | ------------------------------------------------------------------- |
| 4696 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4697 | Copyright (c)1999 Citrus Project, |
| 4698 | All rights reserved. |
| 4699 | |
| 4700 | Redistribution and use in source and binary forms, with or without |
| 4701 | modification, are permitted provided that the following conditions |
| 4702 | are met: |
| 4703 | 1. Redistributions of source code must retain the above copyright |
| 4704 | notice, this list of conditions and the following disclaimer. |
| 4705 | 2. Redistributions in binary form must reproduce the above copyright |
| 4706 | notice, this list of conditions and the following disclaimer in the |
| 4707 | documentation and/or other materials provided with the distribution. |
| 4708 | |
| 4709 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4710 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4711 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4712 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4713 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4714 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4715 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4716 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4717 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4718 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4719 | SUCH DAMAGE. |
| 4720 | |
| 4721 | ------------------------------------------------------------------- |
| 4722 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 4723 | Copyright (c)1999, 2000, 2001 Citrus Project, |
| 4724 | All rights reserved. |
| 4725 | |
| 4726 | Redistribution and use in source and binary forms, with or without |
| 4727 | modification, are permitted provided that the following conditions |
| 4728 | are met: |
| 4729 | 1. Redistributions of source code must retain the above copyright |
| 4730 | notice, this list of conditions and the following disclaimer. |
| 4731 | 2. Redistributions in binary form must reproduce the above copyright |
| 4732 | notice, this list of conditions and the following disclaimer in the |
| 4733 | documentation and/or other materials provided with the distribution. |
| 4734 | |
| 4735 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4736 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4737 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4738 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4739 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4740 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4741 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4742 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4743 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4744 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4745 | SUCH DAMAGE. |
| 4746 | |
| 4747 | ------------------------------------------------------------------- |
| 4748 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4749 | Copyright (c)2001 Citrus Project, |
| 4750 | All rights reserved. |
| 4751 | |
| 4752 | Redistribution and use in source and binary forms, with or without |
| 4753 | modification, are permitted provided that the following conditions |
| 4754 | are met: |
| 4755 | 1. Redistributions of source code must retain the above copyright |
| 4756 | notice, this list of conditions and the following disclaimer. |
| 4757 | 2. Redistributions in binary form must reproduce the above copyright |
| 4758 | notice, this list of conditions and the following disclaimer in the |
| 4759 | documentation and/or other materials provided with the distribution. |
| 4760 | |
| 4761 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4762 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4763 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4764 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4765 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4766 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4767 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4768 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4769 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4770 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4771 | SUCH DAMAGE. |
| 4772 | |
| 4773 | ------------------------------------------------------------------- |
| 4774 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4775 | Copyright (c)2003 Citrus Project, |
| 4776 | All rights reserved. |
| 4777 | |
| 4778 | Redistribution and use in source and binary forms, with or without |
| 4779 | modification, are permitted provided that the following conditions |
| 4780 | are met: |
| 4781 | 1. Redistributions of source code must retain the above copyright |
| 4782 | notice, this list of conditions and the following disclaimer. |
| 4783 | 2. Redistributions in binary form must reproduce the above copyright |
| 4784 | notice, this list of conditions and the following disclaimer in the |
| 4785 | documentation and/or other materials provided with the distribution. |
| 4786 | |
| 4787 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4788 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4789 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4790 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4791 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4792 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4793 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4794 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4795 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4796 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4797 | SUCH DAMAGE. |
| 4798 | |
| 4799 | ------------------------------------------------------------------- |
| 4800 | |
Elliott Hughes | 77a3e28 | 2016-08-08 12:39:56 -0700 | [diff] [blame^] | 4801 | Copyright 1989 The Regents of the University of California. |
| 4802 | All rights reserved. |
| 4803 | |
| 4804 | Redistribution and use in source and binary forms, with or without |
| 4805 | modification, are permitted provided that the following conditions |
| 4806 | are met: |
| 4807 | 1. Redistributions of source code must retain the above copyright |
| 4808 | notice, this list of conditions and the following disclaimer. |
| 4809 | 2. Redistributions in binary form must reproduce the above copyright |
| 4810 | notice, this list of conditions and the following disclaimer in the |
| 4811 | documentation and/or other materials provided with the distribution. |
| 4812 | 3. Neither the name of the University nor the names of its contributors |
| 4813 | may be used to endorse or promote products derived from this software |
| 4814 | without specific prior written permission. |
| 4815 | |
| 4816 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND |
| 4817 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4818 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4819 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 4820 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4821 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4822 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4823 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4824 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4825 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4826 | |
| 4827 | ------------------------------------------------------------------- |
| 4828 | |
Elliott Hughes | 5c2264a | 2014-09-13 09:42:41 -0700 | [diff] [blame] | 4829 | Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> |
| 4830 | Copyright 2008 Damien Miller <djm@openbsd.org> |
| 4831 | All rights reserved. |
| 4832 | |
| 4833 | Theo de Raadt <deraadt@openbsd.org> came up with the idea of using |
| 4834 | such a mathematical system to generate more random (yet non-repeating) |
| 4835 | ids to solve the resolver/named problem. But Niels designed the |
| 4836 | actual system based on the constraints. |
| 4837 | |
| 4838 | Later modified by Damien Miller to wrap the LCG output in a 15-bit |
| 4839 | permutation generator based on a Luby-Rackoff block cipher. This |
| 4840 | ensures the output is non-repeating and preserves the MSB twiddle |
| 4841 | trick, but makes it more resistant to LCG prediction. |
| 4842 | |
| 4843 | Redistribution and use in source and binary forms, with or without |
| 4844 | modification, are permitted provided that the following conditions |
| 4845 | are met: |
| 4846 | 1. Redistributions of source code must retain the above copyright |
| 4847 | notice, this list of conditions and the following disclaimer. |
| 4848 | 2. Redistributions in binary form must reproduce the above copyright |
| 4849 | notice, this list of conditions and the following disclaimer in the |
| 4850 | documentation and/or other materials provided with the distribution. |
| 4851 | |
| 4852 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4853 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4854 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4855 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4856 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4857 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4858 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4859 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4860 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4861 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4862 | |
| 4863 | ------------------------------------------------------------------- |
| 4864 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4865 | Copyright 2008 Android Open Source Project (source port randomization) |
| 4866 | Copyright (c) 1985, 1989, 1993 |
| 4867 | The Regents of the University of California. All rights reserved. |
| 4868 | |
| 4869 | Redistribution and use in source and binary forms, with or without |
| 4870 | modification, are permitted provided that the following conditions |
| 4871 | are met: |
| 4872 | 1. Redistributions of source code must retain the above copyright |
| 4873 | notice, this list of conditions and the following disclaimer. |
| 4874 | 2. Redistributions in binary form must reproduce the above copyright |
| 4875 | notice, this list of conditions and the following disclaimer in the |
| 4876 | documentation and/or other materials provided with the distribution. |
| 4877 | 3. All advertising materials mentioning features or use of this software |
| 4878 | must display the following acknowledgement: |
| 4879 | This product includes software developed by the University of |
| 4880 | California, Berkeley and its contributors. |
| 4881 | 4. Neither the name of the University nor the names of its contributors |
| 4882 | may be used to endorse or promote products derived from this software |
| 4883 | without specific prior written permission. |
| 4884 | |
| 4885 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 4886 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4887 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4888 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 4889 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4890 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4891 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4892 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4893 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4894 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4895 | SUCH DAMAGE. |
| 4896 | |
| 4897 | ------------------------------------------------------------------- |
| 4898 | |
Calin Juravle | c4fbf92 | 2014-03-10 11:23:52 +0000 | [diff] [blame] | 4899 | Portions Copyright (C) 2004, 2005, 2008, 2009 Internet Systems Consortium, Inc. ("ISC") |
| 4900 | Portions Copyright (C) 1996-2003 Internet Software Consortium. |
| 4901 | |
| 4902 | Permission to use, copy, modify, and/or distribute this software for any |
| 4903 | purpose with or without fee is hereby granted, provided that the above |
| 4904 | copyright notice and this permission notice appear in all copies. |
| 4905 | |
| 4906 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 4907 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 4908 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 4909 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 4910 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 4911 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 4912 | PERFORMANCE OF THIS SOFTWARE. |
| 4913 | |
| 4914 | ------------------------------------------------------------------- |
| 4915 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4916 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 4917 | |
| 4918 | Permission to use, copy, modify, and distribute this software for any |
| 4919 | purpose with or without fee is hereby granted, provided that the above |
| 4920 | copyright notice and this permission notice appear in all copies, and that |
| 4921 | the name of Digital Equipment Corporation not be used in advertising or |
| 4922 | publicity pertaining to distribution of the document or software without |
| 4923 | specific, written prior permission. |
| 4924 | |
| 4925 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 4926 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 4927 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 4928 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 4929 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 4930 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 4931 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 4932 | SOFTWARE. |
| 4933 | |
| 4934 | ------------------------------------------------------------------- |
| 4935 | |
| 4936 | Portions Copyright (c) 1995 by International Business Machines, Inc. |
| 4937 | |
| 4938 | International Business Machines, Inc. (hereinafter called IBM) grants |
| 4939 | permission under its copyrights to use, copy, modify, and distribute this |
| 4940 | Software with or without fee, provided that the above copyright notice and |
| 4941 | all paragraphs of this notice appear in all copies, and that the name of IBM |
| 4942 | not be used in connection with the marketing of any product incorporating |
| 4943 | the Software or modifications thereof, without specific, written prior |
| 4944 | permission. |
| 4945 | |
| 4946 | To the extent it has a right to do so, IBM grants an immunity from suit |
| 4947 | under its patents, if any, for the use, sale or manufacture of products to |
| 4948 | the extent that such products are used for performing Domain Name System |
| 4949 | dynamic updates in TCP/IP networks by means of the Software. No immunity is |
| 4950 | granted for any product per se or for any other function of any product. |
| 4951 | |
| 4952 | THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, |
| 4953 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 4954 | PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, |
| 4955 | DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING |
| 4956 | OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN |
| 4957 | IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. |
| 4958 | |
| 4959 | ------------------------------------------------------------------- |
| 4960 | |
| 4961 | Portions Copyright(C) 1995, Jason Downs. All rights reserved. |
| 4962 | |
| 4963 | Redistribution and use in source and binary forms, with or without |
| 4964 | modification, are permitted provided that the following conditions |
| 4965 | are met: |
| 4966 | 1. Redistributions of source code must retain the above copyright |
| 4967 | notice, this list of conditions and the following disclaimer. |
| 4968 | 2. Redistributions in binary form must reproduce the above copyright |
| 4969 | notice, this list of conditions and the following disclaimer in the |
| 4970 | documentation and/or other materials provided with the distribution. |
| 4971 | |
| 4972 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS |
| 4973 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4974 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4975 | DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, |
| 4976 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4977 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 4978 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 4979 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4980 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4981 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4982 | SUCH DAMAGE. |
| 4983 | |
| 4984 | ------------------------------------------------------------------- |
| 4985 | |
| 4986 | The author of this software is David M. Gay. |
| 4987 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4988 | Copyright (C) 1998 by Lucent Technologies |
| 4989 | All Rights Reserved |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4990 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4991 | Permission to use, copy, modify, and distribute this software and |
| 4992 | its documentation for any purpose and without fee is hereby |
| 4993 | granted, provided that the above copyright notice appear in all |
| 4994 | copies and that both that the copyright notice and this |
| 4995 | permission notice and warranty disclaimer appear in supporting |
| 4996 | documentation, and that the name of Lucent or any of its entities |
| 4997 | not be used in advertising or publicity pertaining to |
| 4998 | distribution of the software without specific, written prior |
| 4999 | permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5000 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5001 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5002 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5003 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5004 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5005 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5006 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5007 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5008 | THIS SOFTWARE. |
| 5009 | |
| 5010 | ------------------------------------------------------------------- |
| 5011 | |
| 5012 | The author of this software is David M. Gay. |
| 5013 | |
| 5014 | Copyright (C) 1998, 1999 by Lucent Technologies |
| 5015 | All Rights Reserved |
| 5016 | |
| 5017 | Permission to use, copy, modify, and distribute this software and |
| 5018 | its documentation for any purpose and without fee is hereby |
| 5019 | granted, provided that the above copyright notice appear in all |
| 5020 | copies and that both that the copyright notice and this |
| 5021 | permission notice and warranty disclaimer appear in supporting |
| 5022 | documentation, and that the name of Lucent or any of its entities |
| 5023 | not be used in advertising or publicity pertaining to |
| 5024 | distribution of the software without specific, written prior |
| 5025 | permission. |
| 5026 | |
| 5027 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5028 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5029 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5030 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5031 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5032 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5033 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5034 | THIS SOFTWARE. |
| 5035 | |
| 5036 | ------------------------------------------------------------------- |
| 5037 | |
| 5038 | The author of this software is David M. Gay. |
| 5039 | |
| 5040 | Copyright (C) 1998, 2000 by Lucent Technologies |
| 5041 | All Rights Reserved |
| 5042 | |
| 5043 | Permission to use, copy, modify, and distribute this software and |
| 5044 | its documentation for any purpose and without fee is hereby |
| 5045 | granted, provided that the above copyright notice appear in all |
| 5046 | copies and that both that the copyright notice and this |
| 5047 | permission notice and warranty disclaimer appear in supporting |
| 5048 | documentation, and that the name of Lucent or any of its entities |
| 5049 | not be used in advertising or publicity pertaining to |
| 5050 | distribution of the software without specific, written prior |
| 5051 | permission. |
| 5052 | |
| 5053 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5054 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5055 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5056 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5057 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5058 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5059 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5060 | THIS SOFTWARE. |
| 5061 | |
| 5062 | ------------------------------------------------------------------- |
| 5063 | |
| 5064 | The author of this software is David M. Gay. |
| 5065 | |
| 5066 | Copyright (C) 1998-2000 by Lucent Technologies |
| 5067 | All Rights Reserved |
| 5068 | |
| 5069 | Permission to use, copy, modify, and distribute this software and |
| 5070 | its documentation for any purpose and without fee is hereby |
| 5071 | granted, provided that the above copyright notice appear in all |
| 5072 | copies and that both that the copyright notice and this |
| 5073 | permission notice and warranty disclaimer appear in supporting |
| 5074 | documentation, and that the name of Lucent or any of its entities |
| 5075 | not be used in advertising or publicity pertaining to |
| 5076 | distribution of the software without specific, written prior |
| 5077 | permission. |
| 5078 | |
| 5079 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5080 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5081 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5082 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5083 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5084 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5085 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5086 | THIS SOFTWARE. |
| 5087 | |
| 5088 | ------------------------------------------------------------------- |
| 5089 | |
| 5090 | The author of this software is David M. Gay. |
| 5091 | |
| 5092 | Copyright (C) 1998-2001 by Lucent Technologies |
| 5093 | All Rights Reserved |
| 5094 | |
| 5095 | Permission to use, copy, modify, and distribute this software and |
| 5096 | its documentation for any purpose and without fee is hereby |
| 5097 | granted, provided that the above copyright notice appear in all |
| 5098 | copies and that both that the copyright notice and this |
| 5099 | permission notice and warranty disclaimer appear in supporting |
| 5100 | documentation, and that the name of Lucent or any of its entities |
| 5101 | not be used in advertising or publicity pertaining to |
| 5102 | distribution of the software without specific, written prior |
| 5103 | permission. |
| 5104 | |
| 5105 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5106 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5107 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5108 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5109 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5110 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5111 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5112 | THIS SOFTWARE. |
| 5113 | |
| 5114 | ------------------------------------------------------------------- |
| 5115 | |
| 5116 | The author of this software is David M. Gay. |
| 5117 | |
| 5118 | Copyright (C) 2000 by Lucent Technologies |
| 5119 | All Rights Reserved |
| 5120 | |
| 5121 | Permission to use, copy, modify, and distribute this software and |
| 5122 | its documentation for any purpose and without fee is hereby |
| 5123 | granted, provided that the above copyright notice appear in all |
| 5124 | copies and that both that the copyright notice and this |
| 5125 | permission notice and warranty disclaimer appear in supporting |
| 5126 | documentation, and that the name of Lucent or any of its entities |
| 5127 | not be used in advertising or publicity pertaining to |
| 5128 | distribution of the software without specific, written prior |
| 5129 | permission. |
| 5130 | |
| 5131 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5132 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5133 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5134 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5135 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5136 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5137 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5138 | THIS SOFTWARE. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5139 | |
| 5140 | ------------------------------------------------------------------- |
| 5141 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5142 | memchr - find a character in a memory zone |
| 5143 | |
| 5144 | Copyright (c) 2014, ARM Limited |
| 5145 | All rights Reserved. |
| 5146 | Copyright (c) 2014, Linaro Ltd. |
| 5147 | |
| 5148 | Redistribution and use in source and binary forms, with or without |
| 5149 | modification, are permitted provided that the following conditions are met: |
| 5150 | * Redistributions of source code must retain the above copyright |
| 5151 | notice, this list of conditions and the following disclaimer. |
| 5152 | * Redistributions in binary form must reproduce the above copyright |
| 5153 | notice, this list of conditions and the following disclaimer in the |
| 5154 | documentation and/or other materials provided with the distribution. |
| 5155 | * Neither the name of the company nor the names of its contributors |
| 5156 | may be used to endorse or promote products derived from this |
| 5157 | software without specific prior written permission. |
| 5158 | |
| 5159 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5160 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5161 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5162 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5163 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5164 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5165 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5166 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5167 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5168 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5169 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5170 | |
| 5171 | ------------------------------------------------------------------- |
| 5172 | |