HomeSort by relevance Sort by last modified time
    Searched defs:str (Results 426 - 450 of 4378) sorted by null

<<11121314151617181920>>

  /external/libxcam/xcore/
xcam_common.cpp 86 static char str[5]; local
88 xcam_mem_clear (str);
89 memcpy (str, &fourcc, 4);
90 return str;
  /external/libxml2/
testURI.c 23 static void handleURI(const char *str) {
31 ret = xmlParseURIReference(uri, str);
33 printf("%s : error %d\n", str, ret);
60 res = xmlBuildURI((xmlChar *)str, (xmlChar *) base);
95 char str[1024]; local
101 if (fgets (&str[0], sizeof (str) - 1, stdin) == NULL)
107 i = strlen(str);
109 ((str[i - 1] == '\n') || (str[i - 1] == '\r') |
    [all...]
  /external/linux-kselftest/tools/testing/selftests/powerpc/include/
utils.h 74 #define str(s) _str(s) macro
  /external/llvm/include/llvm/DebugInfo/CodeView/
ListRecordBuilder.h 30 llvm::StringRef str() { return Builder.str(); } function in class:llvm::codeview::ListRecordBuilder
  /external/llvm/lib/DebugInfo/CodeView/
TypeRecordBuilder.cpp 20 StringRef TypeRecordBuilder::str() { function in class:TypeRecordBuilder
  /external/ltp/testcases/kernel/device-drivers/uaccess/
ltp_uaccess.c 65 char *str, ch, buffer[str_size]; local
68 str = (char *) ptr;
73 if (copy_from_user(buffer, str, str_size))
76 if (get_user(ch, str))
81 if (copy_to_user(str + 1, test_str + 1, str_size - 1)) {
86 if (put_user(test_str[0], str)) {
  /external/ltp/testcases/kernel/security/dirtyc0w/
dirtyc0w_child.c 34 #define STR "this is not a test\n"
36 static char *str = "m00000000000000000"; variable
78 c += write(mfd, str, strlen(str));
  /external/mesa3d/src/gallium/state_trackers/nine/
nine_pdata.h 23 const unsigned char *str = key; local
26 hash = (unsigned)(str[i]) + (hash << 6) + (hash << 16) - hash;
  /external/mesa3d/src/gtest/include/gtest/
gtest-message.h 101 explicit Message(const char* str) : ss_(new ::std::stringstream) {
102 *ss_ << str; local
  /external/mesa3d/src/mesa/main/
getstring.c 127 const GLubyte *str = ctx->Driver.GetString(ctx, name); local
128 if (str)
129 return str;
  /external/nanopb-c/tests/callbacks/
encode_callbacks.c 11 char *str = "Hello world!"; local
16 return pb_encode_string(stream, (uint8_t*)str, strlen(str));
49 char *str[4] = {"Hello world!", "", "Test", "Test2"}; local
57 if (!pb_encode_string(stream, (uint8_t*)str[i], strlen(str[i])))
  /external/pdfium/core/fxge/dib/
fx_dib_main.cpp 98 const wchar_t* str = wsValue.unterminated_c_str(); local
100 while (FXSYS_iswspace(str[cc]) && cc < len)
107 if (str[cc] == ',' || !FXSYS_isDecimalDigit(str[cc]))
110 r = r * 10 + str[cc] - '0';
113 if (cc < len && str[cc] == ',') {
115 while (FXSYS_iswspace(str[cc]) && cc < len)
119 if (str[cc] == ',' || !FXSYS_isDecimalDigit(str[cc]))
122 g = g * 10 + str[cc] - '0'
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest-message.h 106 explicit Message(const char* str) : ss_(new internal::StrStream) {
107 *ss_ << str; local
  /external/protobuf/python/google/protobuf/pyext/
descriptor_database.cc 91 char* str; local
93 if (PyBytes_AsStringAndSize(serialized_pb.get(), &str, &len) < 0) {
100 if (!file_proto.ParseFromArray(str, len)) {
  /external/protobuf/src/google/protobuf/stubs/
bytestream_unittest.cc 67 string str; local
68 StringByteSink sink(&str);
71 EXPECT_EQ(data, str);
78 string str; local
79 StringByteSink sink(&str);
82 EXPECT_EQ(data.substr(1, data.size() - 2), str);
95 string str; local
96 StringByteSink sink(&str);
98 EXPECT_EQ("ello ", str);
104 string str; local
115 string str; local
137 string str; local
    [all...]
  /external/python/cpython3/Lib/curses/
textpad.py 200 str = curses.wrapper(test_editbox) variable in class:Textbox
201 print('Contents of text box:', repr(str))
  /external/python/cpython3/Modules/
symtablemodule.c 13 char *str; local
19 &str, PyUnicode_FSDecoder, &filename, &startstr))
33 st = Py_SymtableStringObject(str, filename, start);
  /external/selinux/libsemanage/src/
booleans_file.c 24 semanage_bool_t * boolean, FILE * str)
30 if (fprintf(str, "%s=%d\n", name, value) < 0) {
43 char *str = NULL; local
51 if (parse_fetch_string(handle, info, &str, '=') < 0)
54 if (semanage_bool_set_name(handle, boolean, str) < 0)
56 free(str);
57 str = NULL;
98 free(str);
ibendports_file.c 25 FILE *str)
36 if (fprintf(str, "ibendportcon %s ", ibdev_name_str) < 0)
39 if (fprintf(str, "%d ", port) < 0)
44 if (fprintf(str, "%s\n", con_str) < 0)
64 char *str = NULL; local
79 if (parse_fetch_string(handle, info, &str, ' ') < 0)
81 if (semanage_ibendport_set_ibdev_name(handle, ibendport, str) < 0)
83 free(str);
84 str = NULL;
96 if (parse_fetch_string(handle, info, &str, ' ') < 0
    [all...]
ibpkeys_file.c 24 semanage_ibpkey_t *ibpkey, FILE *str)
37 if (fprintf(str, "ibpkeycon %s ", subnet_prefix_str) < 0)
41 if (fprintf(str, "%d ", low) < 0)
44 if (fprintf(str, "%d - %d ", low, high) < 0)
50 if (fprintf(str, "%s\n", con_str) < 0)
69 char *str = NULL; local
84 if (parse_fetch_string(handle, info, &str, ' ') < 0)
86 if (semanage_ibpkey_set_subnet_prefix(handle, ibpkey, str) < 0)
88 free(str);
89 str = NULL
    [all...]
interfaces_file.c 23 semanage_iface_t * iface, FILE * str)
32 if (fprintf(str, "netifcon %s ", name) < 0)
37 if (fprintf(str, "%s ", con_str) < 0)
44 if (fprintf(str, "%s\n", con_str) < 0)
61 char *str = NULL; local
76 if (parse_fetch_string(handle, info, &str, ' ') < 0)
78 if (semanage_iface_set_name(handle, iface, str) < 0)
80 free(str);
81 str = NULL;
86 if (parse_fetch_string(handle, info, &str, ' ') < 0
    [all...]
seusers_file.c 23 semanage_seuser_t * seuser, FILE * str)
30 if (fprintf(str, "%s:%s", name, sename) < 0)
33 if (mls != NULL && fprintf(str, ":%s", mls) < 0)
36 fprintf(str, "\n");
48 char *str = NULL; local
56 if (parse_fetch_string(handle, info, &str, ':') < 0)
58 if (semanage_seuser_set_name(handle, seuser, str) < 0)
60 free(str);
61 str = NULL;
71 if (parse_fetch_string(handle, info, &str, ':') < 0
    [all...]
users_extra_file.c 24 semanage_user_extra_t * user_extra, FILE * str)
30 if (fprintf(str, "user %s prefix %s;\n", name, prefix) < 0)
46 char *str = NULL; local
60 if (parse_fetch_string(handle, info, &str, ' ') < 0)
62 if (semanage_user_extra_set_name(handle, user_extra, str) < 0)
64 free(str);
65 str = NULL;
76 if (parse_fetch_string(handle, info, &str, ';') < 0)
78 if (semanage_user_extra_set_prefix(handle, user_extra, str) < 0)
80 free(str);
    [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinystr.cpp 49 TiXmlString& TiXmlString::assign(const char* str, size_type len)
56 memcpy(tmp.start(), str, len);
61 memmove(start(), str, len); local
68 TiXmlString& TiXmlString::append(const char* str, size_type len)
75 memmove(finish(), str, len); local
  /external/skia/gm/
imageblurtiled.cpp 43 const char* str[] = { variable
54 for (unsigned i = 0; i < SK_ARRAY_COUNT(str); i++) {
56 canvas->drawString(str[i], SkIntToScalar(0),

Completed in 557 milliseconds

<<11121314151617181920>>