HomeSort by relevance Sort by last modified time
    Searched defs:BODY (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/iproute2/tc/
tc_exec.c 22 static void *BODY;
56 dlh = BODY;
58 dlh = BODY = dlopen(NULL, RTLD_LAZY);
tc.c 50 static void *BODY; /* cached handle dlopen(NULL) */
135 dlh = BODY;
137 dlh = BODY = dlopen(NULL, RTLD_LAZY);
186 dlh = BODY;
188 dlh = BODY = dlopen(NULL, RTLD_LAZY);
  /external/valgrind/memcheck/tests/
recursive-merge.c 7 #define BODY(f) \
25 BODY("a")
28 BODY("b")
31 BODY("c");
34 BODY("d");
43 BODY("test ")
  /external/iproute2/genl/
genl.c 34 static void *BODY;
69 dlh = BODY;
71 dlh = BODY = dlopen(NULL, RTLD_LAZY);
  /external/toolchain-utils/deprecated/
sheriff_rotation.py 28 BODY = ('Please see instructions here: '
81 self.BODY,
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
FetchProfile.java 27 * Message: Indicates that the body of the entire message should be fetched.
28 * Synonymous with FetchProfile.Item.BODY.
53 * not capable of this operation it should specifically set the body of the message to null so
54 * that upper levels can detect that a full body download is needed.
65 BODY,
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
FetchProfile.java 26 * Message: Indicates that the body of the entire message should be fetched.
27 * Synonymous with FetchProfile.Item.BODY.
56 * capable of this operation it should specifically set the body of the message to null
57 * so that upper levels can detect that a full body download is needed.
70 BODY,
  /development/samples/devbytes/telephony/SmsSampleProject/app/src/main/java/com/example/android/smssample/
MainActivity.java 84 SmsQuery.PROJECTION[SmsQuery.ADDRESS], SmsQuery.PROJECTION[SmsQuery.BODY] };
204 Inbox.BODY,
211 int BODY = 2;
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Tag.java 24 public static final Tag BODY = new TagImpl ("BODY");
  /external/okhttp/okhttp-logging-interceptor/src/main/java/com/squareup/okhttp/logging/
HttpLoggingInterceptor.java 55 * --> POST /greeting HTTP/1.1 (3-byte body)
57 * <-- HTTP/1.1 200 OK (22ms, 6-byte body)
100 BODY
145 boolean logBody = level == Level.BODY;
148 RequestBody requestBody = request.body();
156 requestStartMessage += " (" + requestBody.contentLength() + "-byte body)";
162 // Request body headers are only present when installed as a network interceptor. Force
175 // Skip headers from the request body as they are explicitly logged above.
184 logger.log("--> END " + request.method() + " (encoded body omitted)");
199 + " (" + requestBody.contentLength() + "-byte body)");
    [all...]
  /frameworks/base/core/java/android/net/
MailTo.java 40 static private final String BODY = "body";
136 * Retrieve the body line from the parsed mailto URL.
137 * If no body line was specified, then null is return
138 * @return body or null
141 return mHeaders.get(BODY);
  /external/clang/include/clang/AST/
StmtObjC.h 25 enum { ELEM, COLLECTION, BODY, END_EXPR };
30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
39 Stmt *getBody() { return SubExprs[BODY]; }
45 const Stmt *getBody() const { return SubExprs[BODY]; }
51 void setBody(Stmt *S) { SubExprs[BODY] = S; }
60 return SubExprs[BODY]->getLocEnd();
77 Stmt *Body;
85 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
90 const Stmt *getCatchBody() const { return Body; }
91 Stmt *getCatchBody() { return Body; }
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java 48 * can get a body or parameters but not both. Calling a getParameter method will
49 * read and close the body (like readBodyAsString), so you can't read it later.
50 * If you read or close the body first, then getParameter can't read it. The
218 ParameterStyle style = (ps == null) ? ParameterStyle.BODY : Enum
267 InputStream body = request.getBodyAsStream(); local
268 if (style == ParameterStyle.BODY && !(isPost && body == null)) {
278 case BODY: {
284 body = new ByteArrayInputStream(form);
300 if (isPost && body == null)
    [all...]
  /frameworks/base/obex/javax/obex/
HeaderSet.java 121 * Represents the OBEX BODY header.
123 * The value of <code>BODY</code> is 0x48 (72).
125 public static final int BODY = 0x48;
128 * Represents the OBEX End of BODY header.
130 * The value of <code>BODY</code> is 0x49 (73).
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
StmtObjC.h 25 enum { ELEM, COLLECTION, BODY, END_EXPR };
30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
39 Stmt *getBody() { return SubExprs[BODY]; }
45 const Stmt *getBody() const { return SubExprs[BODY]; }
51 void setBody(Stmt *S) { SubExprs[BODY] = S; }
60 return SubExprs[BODY]->getLocEnd();
77 Stmt *Body;
85 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
90 const Stmt *getCatchBody() const { return Body; }
91 Stmt *getCatchBody() { return Body; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
StmtObjC.h 25 enum { ELEM, COLLECTION, BODY, END_EXPR };
30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
39 Stmt *getBody() { return SubExprs[BODY]; }
45 const Stmt *getBody() const { return SubExprs[BODY]; }
51 void setBody(Stmt *S) { SubExprs[BODY] = S; }
60 return SubExprs[BODY]->getLocEnd();
77 Stmt *Body;
85 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
90 const Stmt *getCatchBody() const { return Body; }
91 Stmt *getCatchBody() { return Body; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/
StmtObjC.h 25 enum { ELEM, COLLECTION, BODY, END_EXPR };
30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
39 Stmt *getBody() { return SubExprs[BODY]; }
45 const Stmt *getBody() const { return SubExprs[BODY]; }
51 void setBody(Stmt *S) { SubExprs[BODY] = S; }
60 return SubExprs[BODY]->getLocEnd();
77 Stmt *Body;
85 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
90 const Stmt *getCatchBody() const { return Body; }
91 Stmt *getCatchBody() { return Body; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
StmtObjC.h 25 enum { ELEM, COLLECTION, BODY, END_EXPR };
30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
39 Stmt *getBody() { return SubExprs[BODY]; }
45 const Stmt *getBody() const { return SubExprs[BODY]; }
51 void setBody(Stmt *S) { SubExprs[BODY] = S; }
60 return SubExprs[BODY]->getLocEnd();
77 Stmt *Body;
85 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
90 const Stmt *getCatchBody() const { return Body; }
91 Stmt *getCatchBody() { return Body; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/AST/
StmtObjC.h 25 enum { ELEM, COLLECTION, BODY, END_EXPR };
30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
39 Stmt *getBody() { return SubExprs[BODY]; }
45 const Stmt *getBody() const { return SubExprs[BODY]; }
51 void setBody(Stmt *S) { SubExprs[BODY] = S; }
60 return SubExprs[BODY]->getLocEnd();
77 Stmt *Body;
85 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
90 const Stmt *getCatchBody() const { return Body; }
91 Stmt *getCatchBody() { return Body; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/AST/
StmtObjC.h 25 enum { ELEM, COLLECTION, BODY, END_EXPR };
30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
39 Stmt *getBody() { return SubExprs[BODY]; }
45 const Stmt *getBody() const { return SubExprs[BODY]; }
51 void setBody(Stmt *S) { SubExprs[BODY] = S; }
60 return SubExprs[BODY]->getLocEnd();
77 Stmt *Body;
85 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
90 const Stmt *getCatchBody() const { return Body; }
91 Stmt *getCatchBody() { return Body; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/AST/
StmtObjC.h 25 enum { ELEM, COLLECTION, BODY, END_EXPR };
30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
39 Stmt *getBody() { return SubExprs[BODY]; }
45 const Stmt *getBody() const { return SubExprs[BODY]; }
51 void setBody(Stmt *S) { SubExprs[BODY] = S; }
60 return SubExprs[BODY]->getLocEnd();
77 Stmt *Body;
85 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
90 const Stmt *getCatchBody() const { return Body; }
91 Stmt *getCatchBody() { return Body; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
StmtObjC.h 25 enum { ELEM, COLLECTION, BODY, END_EXPR };
30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
39 Stmt *getBody() { return SubExprs[BODY]; }
45 const Stmt *getBody() const { return SubExprs[BODY]; }
51 void setBody(Stmt *S) { SubExprs[BODY] = S; }
60 return SubExprs[BODY]->getLocEnd();
77 Stmt *Body;
85 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
90 const Stmt *getCatchBody() const { return Body; }
91 Stmt *getCatchBody() { return Body; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/AST/
StmtObjC.h 25 enum { ELEM, COLLECTION, BODY, END_EXPR };
30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
39 Stmt *getBody() { return SubExprs[BODY]; }
45 const Stmt *getBody() const { return SubExprs[BODY]; }
51 void setBody(Stmt *S) { SubExprs[BODY] = S; }
60 return SubExprs[BODY]->getLocEnd();
77 Stmt *Body;
85 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
90 const Stmt *getCatchBody() const { return Body; }
91 Stmt *getCatchBody() { return Body; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/AST/
StmtObjC.h 25 enum { ELEM, COLLECTION, BODY, END_EXPR };
30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
39 Stmt *getBody() { return SubExprs[BODY]; }
45 const Stmt *getBody() const { return SubExprs[BODY]; }
51 void setBody(Stmt *S) { SubExprs[BODY] = S; }
60 return SubExprs[BODY]->getLocEnd();
77 Stmt *Body;
85 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
90 const Stmt *getCatchBody() const { return Body; }
91 Stmt *getCatchBody() { return Body; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/AST/
StmtObjC.h 25 enum { ELEM, COLLECTION, BODY, END_EXPR };
30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
39 Stmt *getBody() { return SubExprs[BODY]; }
45 const Stmt *getBody() const { return SubExprs[BODY]; }
51 void setBody(Stmt *S) { SubExprs[BODY] = S; }
60 return SubExprs[BODY]->getLocEnd();
77 Stmt *Body;
85 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
90 const Stmt *getCatchBody() const { return Body; }
91 Stmt *getCatchBody() { return Body; }
    [all...]

Completed in 566 milliseconds

1 2 3 4 5