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