/external/chromium/third_party/zlib/ |
inflate.c | 34 * - Remove distance extra == 0 check in inflate_fast()--only helps for lengths 51 * - Simplified bad distance check in inflate_fast() 78 * - Check next_in and next_out for Z_NULL on entry to inflate() 375 /* check function to use adler32() for zlib or crc32() for gzip */ 377 # define UPDATE(check, buf, len) \ 378 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len)) 380 # define UPDATE(check, buf, len) adler32(check, buf, len) 383 /* check macros for header crc * [all...] |
/external/qemu/distrib/zlib-1.2.3/ |
inflate.c | 34 * - Remove distance extra == 0 check in inflate_fast()--only helps for lengths 51 * - Simplified bad distance check in inflate_fast() 78 * - Check next_in and next_out for Z_NULL on entry to inflate() 375 /* check function to use adler32() for zlib or crc32() for gzip */ 377 # define UPDATE(check, buf, len) \ 378 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len)) 380 # define UPDATE(check, buf, len) adler32(check, buf, len) 383 /* check macros for header crc * [all...] |
/external/zlib/ |
inflate.c | 34 * - Remove distance extra == 0 check in inflate_fast()--only helps for lengths 51 * - Simplified bad distance check in inflate_fast() 78 * - Check next_in and next_out for Z_NULL on entry to inflate() 410 /* check function to use adler32() for zlib or crc32() for gzip */ 412 # define UPDATE(check, buf, len) \ 413 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len)) 415 # define UPDATE(check, buf, len) adler32(check, buf, len) 418 /* check macros for header crc * [all...] |
/external/chromium/base/crypto/ |
rsa_private_key.cc | 74 CHECK(num_bytes <= 4);
|
/external/chromium/net/socket/ |
ssl_test_util.cc | 205 CHECK(PathService::Get(base::DIR_SOURCE_ROOT, &third_party_dir));
|
ssl_client_socket_win.cc | 196 // name mismatch and unable-to-check-revocation errors. 549 // Ideally, we should also check if we have received the close_notify alert 561 // Strictly speaking, we should check if we have received the close_notify 598 CHECK(buf); 599 CHECK(buf->data()); [all...] |
/external/v8/src/ |
flags.cc | 307 CHECK(n < static_cast<size_t>(buffer_size)); // buffer is too small
|
heap.h | 243 // all available bytes. Check MaxHeapObjectSize() instead. 354 // encoded (it does not check that the buffer is ASCII encoded) and the [all...] |
scopeinfo.cc | 325 CHECK(code->sinfo_size() == size);
|
/frameworks/base/media/libstagefright/omx/ |
OMXNodeInstance.cpp | 177 CHECK(!"should not be here, unknown state.");
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ |
RemotePackagesPage.java | 139 mUpdateOnlyCheckBox = new Button(parent, SWT.CHECK);
181 // Disable the check that prevents subclassing of SWT components
|
/sdk/sdkstats/src/com/android/sdkstats/ |
SdkStatsService.java | 361 final Button checkbox = new Button(shell, SWT.CHECK);
|
/external/chromium/base/ |
tracked_objects.cc | 382 CHECK(tls_index_.Initialize(NULL)); 435 CHECK(tls_index_.initialized());
|
logging.h | 55 // The CHECK(condition) macro is active in both debug and release builds and 176 // Sets the Log Assert Handler that will be used to notify of check failures. 182 // Sets the Log Report Handler that will be used to notify of check failures 296 // CHECK dies with a fatal error if condition is not true. It is *not* 297 // controlled by NDEBUG, so the check will be executed regardless of 299 #define CHECK(condition) \ 300 LOG_IF(FATAL, !(condition)) << "Check failed: " #condition ". " 303 PLOG_IF(FATAL, !(condition)) << "Check failed: " #condition ". " 386 // variable in a CHECK, we make sure to use the macro arguments. 448 LOG_IF(FATAL, !(condition)) << "Check failed: " #condition ". [all...] |
/external/chromium/net/proxy/ |
proxy_config_service_linux.cc | 104 // Check for automatic configuration first, in 598 // Check for authentication, just so we can warn. 750 CHECK(event_ptr + sizeof(inotify_event) <= event_buf + r); 751 CHECK(event->name + event->len <= event_buf + r); 823 // Check for an optional port. [all...] |
proxy_config_service_linux_unittest.cc | 72 CHECK(it != settings.end()) << "key " << key << " not found"; [all...] |
/external/chromium/net/tools/flip_server/ |
balsa_headers.h | 37 // it would have to check for bounds every byte, instead of every 16 bytes. 150 CHECK(can_write_to_contiguous_buffer_); 231 CHECK(!blocks_.empty()); 658 // Check against header_lines_key_end() to determine when iteration is 869 // Check returned iterator against header_lines_key_end() to determine when 896 // BalsaHeaders will not check that there is adequate space in the buffer [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
NewTestProjectCreationPage.java | 99 /** Initial value for the Use Default Location check box. */ 101 /** Initial value for the Create Test Project check box. */ 357 mCreateTestProjectField = new Button(parent, SWT.CHECK); 423 mUseDefaultLocation = new Button(group, SWT.CHECK); 704 /** Returns the current project location, depending on the Use Default Location check box. */ [all...] |
NewProjectCreationPage.java | 108 /** Initial value for the Use Default Location check box. */ 110 /** Initial value for the Create Activity check box. */ 431 * [check] Use default location 452 mUseDefaultLocation = new Button(group, SWT.CHECK); 643 mCreateActivityCheck = new Button(group, SWT.CHECK); 704 /** Returns the current project location, depending on the Use Default Location check box 705 * or the Create From Sample check box. */ [all...] |
/sdk/ddms/app/src/com/android/ddms/ |
UIThread.java | 272 // one gets the focus, so we need to check. 311 "Check logcat for more information.", 513 // check that we're not out of the display area 515 // first check the width/height 524 // then check x. Make sure the left corner is in the screen 532 // then check y. Make sure the left corner is in the screen 581 // check that we're not out of the display area 583 // first check the width/height 592 // then check x. Make sure the left corner is in the screen 600 // then check y. Make sure the left corner is in the scree [all...] |
/external/chromium/net/url_request/ |
url_request_http_job.cc | 117 // globally useful instance "too soon," so this check is just defensive 278 // Check if we need either Proxy or WWW Authentication. This could happen 516 // Check whether our context is using Strict-Transport-Security. 577 CHECK(transaction_.get()); 874 // In this case we need to probe to check that we can make HTTPS
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
queue.h | 510 // First check if the FST is known to have these properties. 567 CHECK(comp);
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/ |
EventValueSelector.java | 239 mDisplayPidCheckBox = new Button(mShell, SWT.CHECK);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/ |
UiClassAttributeNode.java | 178 mProjectOnly = new Button(parent, SWT.CHECK); 289 * Add a modify listener that will check the validity of the class 498 // check if the class doesn't start with the package.
|
/external/chromium/net/http/ |
http_network_transaction.cc | 693 // Check first if we have a flip session for this group. If so, then go [all...] |