HomeSort by relevance Sort by last modified time
    Searched defs:type (Results 26 - 50 of 10128) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_gettype/
1-1.c 10 * Gets the mutex 'type' attribute. This attribute is set in the 'type' parameter to
13 * Testing the default 'type' value.
17 * 2. Call pthread_mutexattr_gettype() to check if type
31 int type; local
39 /* The default 'type' attribute should be PTHREAD_MUTEX_DEFAULT */
40 if (pthread_mutexattr_gettype(&mta, &type) != 0) {
42 "pthread_mutexattr_gettype(): Error obtaining the attribute 'type'\n");
46 if (type != PTHREAD_MUTEX_DEFAULT) {
48 ("Test FAILED: Incorrect default mutexattr 'type' value: %d\n"
    [all...]
1-2.c 10 * Gets the mutex 'type' attribute. This attribute is set in the 'type' parameter to
13 * Testing the PTHREAD_MUTEX_DEFAULT type.
17 * 2. Set tye mutexattr type to PTHREAD_MUTEX_DEFAULT
18 * 3. Call pthread_mutexattr_gettype() to check if type
32 int type; local
40 /* Set the mutex attribute 'type' to PTHREAD_MUTEX_DEFAULT. */
43 "pthread_mutexattr_settype(): Error setting the attribute 'type'\n");
47 /* The 'type' attribute should be PTHREAD_MUTEX_DEFAULT */
48 if (pthread_mutexattr_gettype(&mta, &type) != 0)
    [all...]
1-3.c 10 * Gets the mutex 'type' attribute. This attribute is set in the 'type' parameter to
13 * Testing the PTHREAD_MUTEX_NORMAL type.
17 * 2. Set tye mutexattr type to PTHREAD_MUTEX_NORMAL
18 * 3. Call pthread_mutexattr_gettype() to check if type
32 int type; local
40 /* Set the mutex attribute 'type' to PTHREAD_MUTEX_NORMAL. */
43 "pthread_mutexattr_settype(): Error setting the attribute 'type'\n");
47 /* The 'type' attribute should be PTHREAD_MUTEX_NORMAL */
48 if (pthread_mutexattr_gettype(&mta, &type) != 0)
    [all...]
1-4.c 10 * Gets the mutex 'type' attribute. This attribute is set in the 'type' parameter to
13 * Testing the PTHREAD_MUTEX_ERRORCHECK type.
17 * 2. Set tye mutexattr type to PTHREAD_MUTEX_ERRORCHECK
18 * 3. Call pthread_mutexattr_gettype() to check if type
32 int type; local
40 /* Set the mutex attribute 'type' to PTHREAD_MUTEX_ERRORCHECK. */
43 "pthread_mutexattr_settype(): Error setting the attribute 'type'\n");
47 /* The 'type' attribute should be PTHREAD_MUTEX_ERRORCHECK */
48 if (pthread_mutexattr_gettype(&mta, &type) != 0)
    [all...]
1-5.c 10 * Gets the mutex 'type' attribute. This attribute is set in the 'type' parameter to
13 * Testing the PTHREAD_MUTEX_RECURSIVE type.
17 * 2. Set tye mutexattr type to PTHREAD_MUTEX_RECURSIVE
18 * 3. Call pthread_mutexattr_gettype() to check if type
32 int type; local
40 /* Set the mutex attribute 'type' to PTHREAD_MUTEX_RECURSIVE. */
43 "pthread_mutexattr_settype(): Error setting the attribute 'type'\n");
47 /* The 'type' attribute should be PTHREAD_MUTEX_RECURSIVE */
48 if (pthread_mutexattr_gettype(&mta, &type) != 0)
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_settype/
1-1.c 9 * int pthread_mutexattr_settype(pthread_mutexattr_t *attr, int type);
10 * Sets the mutex 'type' attribute. This attribute is set in the 'type' parameter to
24 int type; local
32 if (pthread_mutexattr_gettype(&mta, &type) != 0) {
33 printf("Error getting the attribute 'type'\n");
37 if (type != PTHREAD_MUTEX_DEFAULT) {
39 ("Test FAILED: Default value of the 'type' attribute is not PTHREAD_MUTEX_DEFAULT \n");
44 printf("Test FAILED: Error setting the attribute 'type'\n");
48 if (pthread_mutexattr_gettype(&mta, &type) != 0)
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_bld_blend_logicop.c 49 LLVMTypeRef type; local
52 type = LLVMTypeOf(src);
56 res = LLVMConstNull(type);
101 res = LLVMConstAllOnes(type);
  /external/parameter-framework/upstream/parameter/
SubsystemLibrary.h 50 // Builder type (based on element's name attribute)
54 std::string type; local
55 xmlElement.getAttribute("Type", type);
56 return type;
  /external/pdfium/fxjs/xfa/
cjx_digestmethods.cpp 22 void CJX_DigestMethods::type(CFXJSE_Value* pValue, function in class:CJX_DigestMethods
cjx_encodings.cpp 21 void CJX_Encodings::type(CFXJSE_Value* pValue, function in class:CJX_Encodings
cjx_extras.cpp 21 void CJX_Extras::type(CFXJSE_Value* pValue, function in class:CJX_Extras
cjx_issuers.cpp 15 void CJX_Issuers::type(CFXJSE_Value* pValue, function in class:CJX_Issuers
cjx_linear.cpp 21 void CJX_Linear::type(CFXJSE_Value* pValue, function in class:CJX_Linear
cjx_oids.cpp 21 void CJX_Oids::type(CFXJSE_Value* pValue, function in class:CJX_Oids
cjx_pattern.cpp 21 void CJX_Pattern::type(CFXJSE_Value* pValue, function in class:CJX_Pattern
cjx_radial.cpp 21 void CJX_Radial::type(CFXJSE_Value* pValue, function in class:CJX_Radial
cjx_reasons.cpp 21 void CJX_Reasons::type(CFXJSE_Value* pValue, function in class:CJX_Reasons
cjx_signing.cpp 21 void CJX_Signing::type(CFXJSE_Value* pValue, function in class:CJX_Signing
  /external/syslinux/com32/gpllib/dmi/
dmi_ipmi.c 35 static const char *type[] = { local
44 return type[code];
48 void dmi_ipmi_base_address(uint8_t type, const uint8_t * p, s_ipmi * ipmi)
50 if (type == 0x04) { /* SSIF */
  /external/syslinux/memdisk/
e820.h 23 uint32_t type; member in struct:e820range
  /external/tcpdump/
print-msdp.c 36 unsigned int type, len; local
40 type = *sp;
42 if (len > 1500 || len < 3 || type == 0 || type > MSDP_TYPE_MAX)
47 type = *sp;
55 switch (type) {
58 if (type == 1)
87 ND_PRINT((ndo, " [type=%d len=%d]", type, len));
  /external/webrtc/talk/app/webrtc/objc/public/
RTCStatsReport.h 35 @property(nonatomic, readonly) NSString* type; variable
  /external/webrtc/webrtc/api/objc/
RTCSessionDescription.h 14 * Represents the session description type. This exposes the same types that are
15 * in C++, which doesn't include the rollback type that is in the W3C spec.
27 /** The type of session description. */
28 @property(nonatomic, readonly) RTCSdpType type; variable
35 /** Initialize a session description with a type and SDP string. */
36 - (instancetype)initWithType:(RTCSdpType)type sdp:(NSString *)sdp
RTCStatsReport.h 21 /** The type of stats held by this object. */
22 @property(nonatomic, readonly) NSString *type; variable
  /frameworks/base/tools/aapt/tests/
AaptGroupEntry_test.cpp 41 String8 type; local
42 EXPECT_TRUE(TestParse(entry, "menu", &type));
43 EXPECT_EQ(String8("menu"), type);
48 String8 type; local
49 EXPECT_TRUE(TestParse(entry, "anim", &type));
50 EXPECT_EQ(String8("anim"), type);
52 EXPECT_TRUE(TestParse(entry, "animator", &type));
53 EXPECT_EQ(String8("animator"), type);

Completed in 440 milliseconds

12 3 4 5 6 7 8 91011>>