HomeSort by relevance Sort by last modified time
    Searched defs:status (Results 351 - 375 of 6808) sorted by null

<<11121314151617181920>>

  /external/ImageMagick/coders/
matte.c 170 status;
211 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
213 if (status == MagickFalse)
221 status=WriteImage(write_info,matte_image,exception);
224 return(status);
165 status; local
mono.c 109 status;
137 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
138 if (status == MagickFalse)
157 status=SetImageExtent(image,image->columns,image->rows,exception);
158 if (status == MagickFalse)
186 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
188 if (status == MagickFalse)
295 status;
321 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
322 if (status == MagickFalse
106 status; local
289 status; local
    [all...]
mvg.c 142 status;
155 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
156 if (status == MagickFalse)
196 status=SetImageExtent(image,image->columns,image->rows,exception);
197 if (status == MagickFalse)
327 status;
341 status=OpenBlob(image_info,image,WriteBlobMode,exception);
342 if (status == MagickFalse)
343 return(status);
138 status; local
320 status; local
null.c 106 status;
135 status=SetImageExtent(image,image->columns,image->rows,exception);
136 if (status == MagickFalse)
103 status; local
plasma.c 125 status;
208 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) depth,
210 if (status == MagickFalse)
123 status; local
rgf.c 111 status;
141 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
142 if (status == MagickFalse)
174 status=SetImageExtent(image,image->columns,image->rows,exception);
175 if (status == MagickFalse)
214 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
216 if (status == MagickFalse)
320 status;
346 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
347 if (status == MagickFalse
108 status; local
314 status; local
    [all...]
thumbnail.c 173 status;
222 status=WriteImage(write_info,thumbnail_image,exception);
225 return(status);
168 status; local
  /external/ImageMagick/www/source/
contrast.c 26 status; local
62 status=MagickReadImage(image_wand,argv[1]);
63 if (status == MagickFalse)
100 status=MagickWriteImages(contrast_wand,argv[2],MagickTrue);
101 if (status == MagickFalse)
  /external/ImageMagick/www/source/core/
sigmoidal-contrast.c 78 status; local
101 status=UpdateImageViewIterator(contrast_view,SigmoidalContrast,(void *) NULL);
102 if (status == MagickFalse)
108 status=WriteImages(image_info,contrast_image,argv[2],exception);
109 if (status == MagickFalse)
  /external/ImageMagick/www/source/wand/
sigmoidal-contrast.c 63 status; local
84 status=MagickReadImage(contrast_wand,argv[1]);
85 if (status == MagickFalse)
93 status=UpdateWandViewIterator(contrast_view,SigmoidalContrast,(void *) NULL);
94 if (status == MagickFalse)
100 status=MagickWriteImages(contrast_wand,argv[2],MagickTrue);
101 if (status == MagickFalse)
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
SetValues002Debuggee.java 39 static String status = passedStatus; field in class:SetValues002Debuggee
61 status = failedStatus;
66 logWriter.println("--> Debuggee: Send check status for SetValues002Test...\n");
67 synchronizer.sendMessage(status);
  /external/apache-http/android/src/android/net/http/
LoggingEventHandler.java 31 public void status(int major_version, method in class:LoggingEventHandler
33 int code, /* Status-Code value */
36 HttpLog.v("LoggingEventHandler:status() major: " + major_version +
  /external/apache-http/src/org/apache/http/impl/client/
DefaultProxyAuthenticationHandler.java 63 int status = response.getStatusLine().getStatusCode(); local
64 return status == HttpStatus.SC_PROXY_AUTHENTICATION_REQUIRED;
DefaultTargetAuthenticationHandler.java 63 int status = response.getStatusLine().getStatusCode(); local
64 return status == HttpStatus.SC_UNAUTHORIZED;
  /external/apache-http/src/org/apache/http/protocol/
ResponseConnControl.java 76 int status = response.getStatusLine().getStatusCode(); local
77 if (status == HttpStatus.SC_BAD_REQUEST ||
78 status == HttpStatus.SC_REQUEST_TIMEOUT ||
79 status == HttpStatus.SC_LENGTH_REQUIRED ||
80 status == HttpStatus.SC_REQUEST_TOO_LONG ||
81 status == HttpStatus.SC_REQUEST_URI_TOO_LONG ||
82 status == HttpStatus.SC_SERVICE_UNAVAILABLE ||
83 status == HttpStatus.SC_NOT_IMPLEMENTED) {
ResponseDate.java 70 int status = response.getStatusLine().getStatusCode(); local
71 if ((status >= HttpStatus.SC_OK) &&
  /external/autotest/site_utils/rpm_control_system/
dli.py 63 """ Return the status of all outlets in a list,
82 """ Print the status off all the outlets as a table to stdout """
89 def status(self,outlet=1): member in class:powerswitch
90 """ Return the status of an outlet, returned value will be one of: On, Off, Unknown """
112 if args[0].lower() in ['status']:
113 print switch.status(int(args[1]))
  /external/c-ares/
ares__get_hostent.c 40 int status; local
57 while ((status = ares__read_line(fp, &line, &linesize)) == ARES_SUCCESS)
238 if (status == ARES_SUCCESS)
262 return status;
ares_expand_name.c 196 int status = ares_expand_name(encoded, abuf, alen, s, enclen); local
197 if (status == ARES_EBADNAME)
198 status = ARES_EBADRESP;
199 return status;
ares_parse_mx_reply.c 54 int status, rr_type, rr_class, rr_len; local
78 status = ares_expand_name (aptr, abuf, alen, &hostname, &len);
79 if (status != ARES_SUCCESS)
80 return status;
93 status = ares_expand_name (aptr, abuf, alen, &rr_name, &len);
94 if (status != ARES_SUCCESS)
101 status = ARES_EBADRESP;
115 status = ARES_EBADRESP;
123 status = ARES_ENOMEM;
140 status = ares_expand_name (vptr, abuf, alen, &mx_curr->host, &len)
    [all...]
ares_parse_ns_reply.c 54 int status, i, rr_type, rr_class, rr_len; local
76 status = ares__expand_name_for_response( aptr, abuf, alen, &hostname, &len);
77 if ( status != ARES_SUCCESS )
78 return status;
99 status = ares__expand_name_for_response( aptr, abuf, alen, &rr_name, &len );
100 if ( status != ARES_SUCCESS )
105 status = ARES_EBADRESP;
117 status = ares__expand_name_for_response( aptr, abuf, alen, &rr_data,
119 if ( status != ARES_SUCCESS )
131 status=ARES_ENOMEM
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/util/mac/
determine_if_keychain_entry_is_decryptable.c 34 OSStatus status = SecKeychainFindGenericPassword(NULL, strlen(service_name), local
38 if (status == errSecItemNotFound)
42 if (status != errSecSuccess)
46 status = SecKeychainItemCopyAccess(item, &access);
49 if (status != errSecSuccess) {
64 status = SecACLCopyContents(acl, &application_list, &description,
68 if (status != errSecSuccess) {
  /external/clang/test/Misc/
diagnostic-crash.cpp 29 namespace util { class Status {}; }
31 void Bar(wstring* s, util::Status* status,
32 Callback2<util::Status, wstring>* done);
37 util::Status* status = __null; local
38 Closure* cb = NewCallback(this, &xxxxxxxxxxxxxxxxx::Bar, s, status); // expected-error{{cannot initialize}}
  /external/conscrypt/platform/src/main/java/org/conscrypt/ct/
VerifiedSCT.java 23 public enum Status {
31 public final Status status; field in class:VerifiedSCT
33 public VerifiedSCT(SignedCertificateTimestamp sct, Status status) {
35 this.status = status;
  /external/icu/icu4c/source/common/
ucln_imp.h 136 BOOL status = TRUE; local
162 return status;

Completed in 964 milliseconds

<<11121314151617181920>>