Searched refs:putenv (Results 1 – 13 of 13) sorted by relevance
8 int putenv(char *);15 return putenv(ex); // no-warning: extern storage class. in test_extern()24 putenv(buffer); in foo()35 putenv(buffer); in bar()41 putenv(env); in baz()48 putenv((char *)"NAME=anothervalue"); in baz()
11 int putenv(char *);23 return putenv(env); in volatile_memory1()39 return putenv(env); in test_static()50 if (putenv(env) != 0) { // no-warning: env was dynamically allocated. in test_heap_memory()
29 int putenv(char *string);
25 putenv(const_cast<char *>("LLDB_TEST_MAGIC_VARIABLE=LLDB_TEST_MAGIC_VALUE")); in TEST_F()42 putenv(const_cast<char *>("LLDB_TEST_MAGIC_VARIABLE=foobar")); in TEST_F()
28 putenv(const_cast<char *>("NO_STOP_MESSAGE=1")); in TEST()54 putenv(const_cast<char *>("NO_STOP_MESSAGE=1")); in TEST()
24 putenv(const_cast<char *>("LLDB_TEST_ENVIRONMENT_VAR=Host::GetEnvironment")); in TEST()
116 putenv("LIBCLANG_LOGGING=1"); in main()
259 putenv(DFSanEnv); in CollectDataFlow()
2257 Finds calls to the ``putenv`` function which pass a pointer to an automatic variable as the argumen…2268 return putenv(env); // putenv function should not be called with auto variables2273 - Technically, one can pass automatic variables to ``putenv``,2284 putenv(env); // false-positive warning: putenv function should not be called...2286 putenv((char *)"NAME=anothervalue");2287 // This putenv call overwrites the previous entry, thus that can no longer dangle.2305 such as putenv, setenv or others, It may happen that memory is reallocated,
649 INTERCEPTOR(int, putenv, char *string) { in INTERCEPTOR() argument651 int res = REAL(putenv)(string); in INTERCEPTOR()1717 INTERCEPT_FUNCTION(putenv); in InitializeInterceptors()
1449 TEST(MemorySanitizer, putenv) { in TEST() argument1451 putenv(s); in TEST()
982 HelpText<"Finds calls to the 'putenv' function which pass a pointer to "
2663 fun:putenv=uninstrumented