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